@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&family=Nunito:wght@300;400;500;600&display=swap');

:root {
  --graphite:   #1c1f26;
  --graphite2:  #252930;
  --graphite3:  #2e333d;
  --graphite4:  #3a4050;
  --lime:       #a8e63d;
  --lime-d:     #8dcf25;
  --lime-l:     #c4f566;
  --lime-pale:  rgba(168,230,61,.08);
  --white:      #ffffff;
  --off:        #f5f7f2;
  --off2:       #eceef0;
  --text:       #2a2e38;
  --muted:      #6b7280;
  --border:     rgba(255,255,255,.07);
  --border-l:   rgba(0,0,0,.08);
  --radius:     6px;
  --radius-lg:  12px;
  --tr:         all .22s cubic-bezier(.4,0,.2,1);
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.1;
  color: var(--graphite);
}

a { color: var(--graphite); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--lime-d); }
img { max-width: 100%; display: block; }

.bg-light-custom { background: var(--off) !important; }
.bg-dark-custom  { background: var(--graphite) !important; }

/* ─── TYPOGRAPHY ─── */
.label-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Nunito', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--lime-d); background: var(--lime-pale);
  padding: .3rem .8rem; border-radius: 50px;
  border: 1px solid rgba(168,230,61,.25);
}
.label-tag.dark { color: var(--lime); background: rgba(168,230,61,.1); border-color: rgba(168,230,61,.2); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700; margin-top: .6rem;
}

/* ─── BUTTONS ─── */
.btn-call {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--lime); color: var(--graphite) !important;
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .5px;
  border: none; padding: .85rem 2rem; border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(168,230,61,.4);
  transition: var(--tr); cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-call:hover { background: var(--lime-l); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(168,230,61,.5); color: var(--graphite) !important; }
.btn-call:active { transform: translateY(0); }
.btn-xl { padding: 1.1rem 2.6rem; font-size: .88rem; }
.btn-lg { padding: 1rem 2.2rem; }
.btn-sm { padding: .5rem 1.2rem !important; font-size: .72rem !important; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white) !important;
  font-family: 'Unbounded', sans-serif; font-weight: 400;
  font-size: .78rem; padding: .85rem 2rem; border-radius: var(--radius);
  transition: var(--tr); cursor: pointer;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime) !important; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1.5px solid var(--border-l);
  color: var(--text) !important;
  font-family: 'Unbounded', sans-serif; font-weight: 400;
  font-size: .72rem; padding: .7rem 1.6rem; border-radius: var(--radius);
  transition: var(--tr);
}
.btn-outline:hover { border-color: var(--lime-d); color: var(--lime-d) !important; }

.btn-primary { @extend .btn-outline; }
.btn-outline-primary { @extend .btn-outline; }
.btn-outline-secondary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; border: 1.5px solid var(--border-l);
  color: var(--muted) !important;
  font-family: 'Unbounded', sans-serif; font-weight: 400;
  font-size: .7rem; padding: .6rem 1.4rem; border-radius: var(--radius);
  transition: var(--tr);
}
.btn-outline-secondary:hover { border-color: var(--graphite); color: var(--graphite) !important; }

/* fix: make btn-primary work without @extend */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1.5px solid var(--border-l);
  color: var(--text) !important;
  font-family: 'Unbounded', sans-serif; font-weight: 400;
  font-size: .72rem; padding: .7rem 1.6rem; border-radius: var(--radius);
  transition: var(--tr);
}
.btn-primary:hover { border-color: var(--lime-d); color: var(--lime-d) !important; }
.btn-outline-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1.5px solid var(--border-l);
  color: var(--text) !important;
  font-family: 'Unbounded', sans-serif; font-weight: 400;
  font-size: .72rem; padding: .7rem 1.6rem; border-radius: var(--radius);
  transition: var(--tr);
}
.btn-outline-primary:hover { border-color: var(--lime-d); color: var(--lime-d) !important; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 1021;
  background: var(--graphite);
  box-shadow: 0 1px 0 var(--border);
}

/* Top bar */
.header-topbar {
  border-bottom: 1px solid var(--border);
  padding: .45rem 0;
  font-size: .72rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center;
}
.topbar-phone a { color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .5px; }
.topbar-phone a:hover { color: var(--lime); }
.topbar-sep { width: 1px; height: 14px; background: var(--border); margin: 0 1rem; }
.topbar-hours { display: flex; align-items: center; gap: .4rem; }
.topbar-hours i { color: var(--lime); font-size: .7rem; }

/* Main nav */
.header-main { padding: .7rem 0; display: flex; align-items: center; gap: 1rem; }

.logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--lime); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite); font-family: 'Unbounded', sans-serif;
  font-size: .9rem; font-weight: 800; letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--white); line-height: 1.1;
}
.logo-tagline { font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .5px; margin-top: .1rem; }

/* Category tabs nav */
.cat-nav {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; flex: 1; max-width: 500px;
}
.cat-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: .5rem .6rem; border-right: 1px solid var(--border);
  color: rgba(255,255,255,.45); font-size: .65rem; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; text-decoration: none;
  transition: var(--tr); gap: .25rem; line-height: 1;
}
.cat-nav-item:last-child { border-right: none; }
.cat-nav-item i { font-size: .95rem; color: rgba(255,255,255,.3); transition: var(--tr); }
.cat-nav-item:hover, .cat-nav-item.active {
  background: rgba(168,230,61,.08); color: var(--lime);
}
.cat-nav-item:hover i, .cat-nav-item.active i { color: var(--lime); }

/* Burger */
.burger-btn {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 10px; cursor: pointer;
  display: flex; flex-direction: column; gap: 4.5px; transition: var(--tr);
}
.burger-btn:hover { background: rgba(255,255,255,.1); }
.burger-btn span { display: block; width: 20px; height: 1.5px; background: white; border-radius: 2px; transition: var(--tr); }
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-nav { background: var(--graphite2); border-top: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mobile-nav.open { max-height: 700px; }
.mobile-nav-inner { padding: 1rem 1.5rem 1.5rem; }
.mobile-nav-link {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.6); padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .82rem; font-weight: 500; transition: var(--tr);
}
.mobile-nav-link i { color: rgba(255,255,255,.25); font-size: .85rem; width: 18px; text-align: center; }
.mobile-nav-link:hover { color: var(--lime); }
.mobile-nav-link:hover i { color: var(--lime); }

/* ─── HERO: SPLIT LAYOUT ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

/* Left dark panel */
.hero-left {
  background: var(--graphite);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem 0;
  position: relative; overflow: hidden;
}
/* Декоративная решётка на фоне */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,230,61,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,230,61,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Лаймовый акцент внизу слева */
.hero-left::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.hero-left-inner { position: relative; z-index: 1; padding-left: calc((100vw - 1320px) / 2 + 12px); }
@media (max-width: 1400px) { .hero-left-inner { padding-left: 2rem; } }

.hero-eyebrow {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 2rem;
}
.hero-year {
  font-family: 'Unbounded', sans-serif; font-size: .62rem; font-weight: 600;
  color: var(--lime); letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(168,230,61,.3); padding: .3rem .8rem; border-radius: 50px;
}
.hero-rating {
  display: flex; align-items: center; gap: .35rem;
  font-size: .72rem; color: rgba(255,255,255,.5);
}
.hero-rating i { color: var(--lime); font-size: .65rem; }

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.05; margin-bottom: 1.2rem;
  letter-spacing: -.02em;
}
.hero-title .line-lime { color: var(--lime); display: block; }
.hero-title .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.2);
  -webkit-text-fill-color: transparent; display: block;
}

.hero-desc {
  font-size: .9rem; color: rgba(255,255,255,.5);
  line-height: 1.8; max-width: 400px; margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Compact stats row */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.hstat {
  padding: .9rem .8rem; text-align: center;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: var(--lime); line-height: 1;
}
.hstat-label { font-size: .6rem; color: rgba(255,255,255,.3); margin-top: .25rem; letter-spacing: .5px; text-transform: uppercase; }

/* Right photo mosaic panel */
.hero-right {
  background: var(--graphite3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px;
  position: relative; overflow: hidden;
}
.hero-photo-cell {
  overflow: hidden; position: relative; cursor: pointer;
}
.hero-photo-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
  filter: grayscale(20%);
}
.hero-photo-cell:hover img { transform: scale(1.06); filter: grayscale(0%); }
/* Первая ячейка — двойная высота */
.hero-photo-cell:nth-child(1) { grid-row: span 2; }
/* Оверлей на последней ячейке — счётчик работ */
.hero-photo-cell:last-child::after {
  content: attr(data-count);
  position: absolute; inset: 0;
  background: rgba(168,230,61,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--graphite); text-align: center; padding: 1rem;
  line-height: 1.3;
}
/* Placeholder когда нет фото */
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--graphite4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.1); font-size: 2rem;
}

/* ─── QUICK FILTERS (под hero) ─── */
.quick-filters {
  background: var(--off); border-bottom: 1px solid var(--border-l);
  padding: 1rem 0;
}
.qf-inner { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.qf-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-right: .5rem;
}
.qf-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white); border: 1.5px solid var(--border-l);
  color: var(--text); font-size: .78rem; font-weight: 500;
  padding: .4rem 1rem; border-radius: 50px; transition: var(--tr);
  cursor: pointer; text-decoration: none;
}
.qf-btn i { color: var(--muted); font-size: .75rem; }
.qf-btn:hover { border-color: var(--lime-d); color: var(--lime-d) !important; }
.qf-btn:hover i { color: var(--lime-d); }

/* ─── УСЛУГИ: ГОРИЗОНТАЛЬНЫЙ СКРОЛЛ ─── */
.services-scroll-wrap {
  overflow-x: auto; padding-bottom: 1rem;
  scrollbar-width: thin; scrollbar-color: var(--lime-d) transparent;
}
.services-scroll-wrap::-webkit-scrollbar { height: 4px; }
.services-scroll-wrap::-webkit-scrollbar-thumb { background: var(--lime-d); border-radius: 4px; }
.services-scroll-track {
  display: flex; gap: 1.2rem; padding: .25rem .25rem 1rem;
  width: max-content;
}
.scard {
  width: 280px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border-l);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--tr); display: flex; flex-direction: column;
}
.scard:hover { border-color: var(--lime-d); box-shadow: 0 8px 32px rgba(168,230,61,.15); transform: translateY(-4px); }
.scard-img { height: 180px; overflow: hidden; position: relative; }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.scard:hover .scard-img img { transform: scale(1.06); }
.scard-img-placeholder { height: 180px; background: var(--off2); display: flex; align-items: center; justify-content: center; color: var(--off2); font-size: 2.5rem; }
.scard-cat {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--graphite); color: var(--lime);
  font-family: 'Unbounded', sans-serif; font-size: .55rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: .22rem .7rem;
  border-radius: 50px;
}
.scard-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.scard-name {
  font-family: 'Unbounded', sans-serif; font-size: .82rem; font-weight: 600;
  color: var(--graphite); margin-bottom: .4rem; line-height: 1.3;
}
.scard-desc { font-size: .78rem; color: var(--muted); flex: 1; margin-bottom: .8rem; line-height: 1.6; }
.scard-price { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 700; color: var(--lime-d); margin-bottom: .8rem; }
.scard-footer { display: flex; gap: .5rem; margin-top: auto; }

/* ─── PORTFOLIO: MASONRY-ПОДОБНАЯ СЕТКА ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.pgrid-item { position: relative; overflow: hidden; cursor: pointer; }
.pgrid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .3s ease; filter: grayscale(15%); }
.pgrid-item:hover img { transform: scale(1.07); filter: grayscale(0%); }
/* Первый элемент — двойная высота */
.pgrid-item:nth-child(1) { grid-row: span 2; }
/* Последний — двойная ширина */
.pgrid-item:nth-last-child(1) { grid-column: span 2; }
.pgrid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,31,38,.9) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem;
}
.pgrid-item:hover .pgrid-overlay { opacity: 1; }
.pgrid-overlay h4 { color: white; font-size: .85rem; font-family: 'Unbounded', sans-serif; margin: 0 0 .25rem; font-weight: 600; line-height: 1.3; }
.pgrid-overlay span { color: var(--lime); font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* ─── ЦЕНЫ: ТАБЛИЦА-СРАВНЕНИЕ ─── */
.price-compare-table {
  width: 100%; border-collapse: collapse; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.price-compare-table thead th {
  background: var(--graphite); color: var(--white);
  font-family: 'Unbounded', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .5px; padding: 1.1rem 1.4rem; text-align: left;
}
.price-compare-table thead th:first-child { color: rgba(255,255,255,.5); }
.price-compare-table thead th.highlight { background: var(--lime); color: var(--graphite); }
.price-compare-table tbody tr { border-bottom: 1px solid var(--border-l); }
.price-compare-table tbody tr:last-child { border-bottom: none; }
.price-compare-table tbody tr:hover { background: var(--off); }
.price-compare-table tbody td { padding: .9rem 1.4rem; font-size: .85rem; color: var(--text); vertical-align: middle; }
.price-compare-table tbody td:first-child { font-weight: 600; color: var(--graphite); }
.price-compare-table tbody td.price-val {
  font-family: 'Unbounded', sans-serif; font-size: .95rem; font-weight: 700;
  color: var(--lime-d);
}
.price-compare-table tbody td.highlight-cell { background: rgba(168,230,61,.04); }
.price-cat-row td {
  background: var(--off2); font-family: 'Unbounded', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted) !important;
  padding: .55rem 1.4rem !important;
}
.price-note {
  background: rgba(168,230,61,.06); border: 1.5px solid rgba(168,230,61,.25);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: .82rem; color: var(--muted);
}
.price-note i { color: var(--lime-d); }

/* ─── ПРОЦЕСС: ГОРИЗОНТАЛЬНАЯ ЛЕНТА ─── */
.process-strip {
  background: var(--graphite);
  padding: 3.5rem 0;
}
.process-row {
  display: flex; align-items: flex-start; gap: 0;
  position: relative;
}
.process-row::before {
  content: ''; position: absolute; top: 1.7rem; left: 2.5rem; right: 2.5rem;
  height: 1px; background: rgba(168,230,61,.2); z-index: 0;
}
.pstep {
  flex: 1; text-align: center; padding: 0 1.5rem; position: relative; z-index: 1;
}
.pstep-dot {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--graphite2); border: 2px solid rgba(168,230,61,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-family: 'Unbounded', sans-serif;
  font-size: .75rem; font-weight: 700; color: var(--lime);
  transition: var(--tr);
}
.pstep:hover .pstep-dot { background: var(--lime); color: var(--graphite); border-color: var(--lime); }
.pstep h4 { font-size: .75rem; color: var(--white); margin-bottom: .4rem; font-family: 'Unbounded', sans-serif; letter-spacing: .5px; }
.pstep p { font-size: .75rem; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ─── ОТЗЫВЫ: ПОЛНОШИРИННАЯ ЛЕНТА ─── */
.reviews-marquee-outer {
  overflow: hidden; background: var(--off); padding: 2.5rem 0;
}
.reviews-marquee {
  display: flex; gap: 1.2rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.reviews-marquee:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rcard {
  width: 320px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border-l);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column;
}
.rcard-stars { color: var(--lime-d); font-size: .9rem; letter-spacing: 3px; margin-bottom: .75rem; }
.rcard-text { font-size: .85rem; color: var(--text); flex: 1; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.rcard-author { display: flex; align-items: center; gap: .7rem; }
.rcard-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--lime-pale);
}
.rcard-avatar-ph {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off2); display: flex; align-items: center;
  justify-content: center; color: var(--muted); font-size: .9rem;
}
.rcard-name { font-weight: 700; font-size: .82rem; color: var(--graphite); }
.rcard-date { font-size: .7rem; color: var(--muted); }

/* ─── WHY US: СПИСОК ПРЕИМУЩЕСТВ ─── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border-l);
  border: 1px solid var(--border-l); border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  background: var(--white); padding: 2rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: var(--tr);
}
.why-item:hover { background: var(--off); }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--lime-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--lime-d); transition: var(--tr);
}
.why-item:hover .why-icon { background: var(--lime); color: var(--graphite); }
.why-item h4 { font-size: .8rem; font-family: 'Unbounded', sans-serif; margin-bottom: .35rem; font-weight: 600; }
.why-item p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── LEAD BANNER ─── */
.lead-banner {
  background: var(--graphite);
  position: relative; overflow: hidden;
}
.lead-banner::before {
  content: 'ЗАЯВКА';
  position: absolute; right: -2rem; bottom: -1rem;
  font-family: 'Unbounded', sans-serif; font-size: 8rem; font-weight: 800;
  color: rgba(168,230,61,.04); letter-spacing: 8px;
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.lead-banner-inner { position: relative; z-index: 1; padding: 4rem 0; }
.lead-phone-big {
  font-family: 'Unbounded', sans-serif; font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); letter-spacing: -.02em;
  text-decoration: none; display: block; margin-bottom: 1rem;
  transition: var(--tr);
}
.lead-phone-big:hover { color: var(--lime); }
.lead-phone-big span { color: var(--lime); }
.lead-caption { color: rgba(255,255,255,.4); font-size: .82rem; margin-bottom: 2rem; }
.lead-form-row { display: flex; gap: .75rem; }
.lead-form-row .form-control {
  flex: 1; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  color: var(--white); border-radius: var(--radius); padding: .85rem 1.1rem;
  font-size: .9rem; transition: var(--tr);
}
.lead-form-row .form-control:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(168,230,61,.12); color: var(--white); }
.lead-form-row .form-control::placeholder { color: rgba(255,255,255,.3); }
.lead-form-privacy { font-size: .68rem; color: rgba(255,255,255,.2); margin-top: .6rem; }
.lead-benefits-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem;
}
.lb-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
}
.lb-item i { color: var(--lime); font-size: .75rem; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--graphite); padding: 3rem 0;
  border-bottom: 3px solid var(--lime);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,230,61,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,230,61,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; }
.page-hero-desc { color: rgba(255,255,255,.45); margin-top: .5rem; font-size: .88rem; }
.page-hero-meta { color: rgba(255,255,255,.35); font-size: .78rem; margin-top: .5rem; }

.breadcrumb { margin-bottom: .8rem; background: transparent; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.35); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.breadcrumb-item a:hover { color: var(--lime); }
.breadcrumb-item.active { color: rgba(255,255,255,.5); font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }

/* ─── SERVICE CARDS (regular pages) ─── */
.service-card {
  background: var(--white); border: 1.5px solid var(--border-l);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--tr); height: 100%; display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--lime-d); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img { height: 210px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img--placeholder { height: 210px; background: var(--off2); display: flex; align-items: center; justify-content: center; color: var(--off2); font-size: 3rem; }
.service-card--large .service-card-img,
.service-card--large .service-card-img--placeholder { height: 260px; }
.service-card-ribbon { position: absolute; top: .7rem; left: .7rem; background: var(--graphite); color: var(--lime); font-family: 'Unbounded', sans-serif; font-size: .55rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: .22rem .7rem; border-radius: 50px; }
.service-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: .85rem; font-family: 'Unbounded', sans-serif; margin-bottom: .45rem; color: var(--graphite); font-weight: 600; }
.service-card-body p { font-size: .8rem; color: var(--muted); flex: 1; margin-bottom: .9rem; }
.service-price { font-family: 'Unbounded', sans-serif; font-size: .95rem; font-weight: 700; color: var(--lime-d); margin-bottom: .8rem; }

/* ─── PORTFOLIO page ─── */
.portfolio-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,31,38,.9) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-overlay h3 { color: white; font-size: .85rem; margin: 0 0 .3rem; font-family: 'Unbounded', sans-serif; }
.portfolio-card-overlay p { color: rgba(255,255,255,.6); font-size: .75rem; margin: 0; }
.bg-accent { background: var(--lime) !important; color: var(--graphite) !important; }

.portfolio-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn {
  padding: .4rem 1.1rem; border-radius: 50px; border: 1.5px solid var(--border-l);
  background: var(--white); color: var(--muted);
  font-size: .72rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  transition: var(--tr); text-decoration: none;
}
.filter-btn:hover { border-color: var(--lime-d); color: var(--lime-d) !important; }
.filter-btn.active { background: var(--graphite); border-color: var(--graphite); color: white !important; }

/* ─── PRICE page ─── */
.price-section h2 { font-size: 1.5rem; padding-left: 1rem; border-left: 3px solid var(--lime); }
.price-tile {
  background: var(--white); border: 1.5px solid var(--border-l);
  border-radius: var(--radius-lg); padding: 1.4rem; transition: var(--tr);
}
.price-tile:hover { border-color: var(--lime-d); box-shadow: var(--shadow); }
.price-tile-name { font-family: 'Unbounded', sans-serif; font-size: .8rem; color: var(--graphite); margin-bottom: .4rem; font-weight: 600; }
.price-tile-desc { font-size: .78rem; color: var(--muted); margin-bottom: .8rem; line-height: 1.6; }
.price-tile-price { font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--lime-d); }

/* ─── CONTACTS ─── */
.contacts-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; background: var(--off); border-radius: var(--radius); transition: var(--tr); border: 1.5px solid transparent; }
.contact-item:hover { border-color: var(--lime-pale); background: rgba(168,230,61,.04); }
.contact-icon { width: 42px; height: 42px; border-radius: var(--radius); background: var(--lime-pale); color: var(--lime-d); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-icon--wa { background: rgba(37,211,102,.1); color: #25d366; }
.contact-label { font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: .15rem; font-weight: 600; }
.contact-value { font-weight: 600; color: var(--graphite); font-size: .9rem; }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border-l); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 420px; border: none; display: block; border-radius: var(--radius-lg); }

/* ─── ABOUT ─── */
.about-stat-card { background: var(--white); border: 1.5px solid var(--border-l); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: var(--tr); }
.about-stat-card:hover { border-color: var(--lime-d); box-shadow: var(--shadow); }
.about-stat-num { font-family: 'Unbounded', sans-serif; font-size: 2rem; font-weight: 800; color: var(--lime-d); }
.about-stat-label { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.about-features { display: flex; flex-direction: column; gap: .75rem; }
.about-feature { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem; background: var(--off); border-radius: var(--radius); transition: var(--tr); }
.about-feature:hover { background: rgba(168,230,61,.06); }
.about-feature-icon { width: 42px; height: 42px; border-radius: var(--radius); background: var(--lime-pale); color: var(--lime-d); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.about-feature h3 { font-size: .82rem; font-family: 'Unbounded', sans-serif; margin-bottom: .2rem; font-weight: 600; }
.about-feature p { font-size: .78rem; color: var(--muted); margin: 0; }

/* ─── assembly ─── */
.assembly-steps { display: flex; flex-direction: column; gap: .75rem; }
.assembly-step { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem; background: var(--off); border-radius: var(--radius); }
.assembly-step-num { font-family: 'Unbounded', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--lime-d); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.assembly-step h3 { font-family: 'Unbounded', sans-serif; font-size: .8rem; margin-bottom: .25rem; font-weight: 600; }
.assembly-step p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.6; }
.assembly-info-card { background: var(--graphite); border-radius: var(--radius-lg); padding: 2rem; }
.assembly-info-card h3 { color: var(--lime); font-family: 'Unbounded', sans-serif; font-size: 1rem; margin-bottom: .8rem; font-weight: 700; }
.assembly-info-card p { color: rgba(255,255,255,.6); line-height: 1.75; font-size: .85rem; }
.check-list { list-style: none; padding: 0; margin-top: 1rem; }
.check-list li { color: rgba(255,255,255,.75); padding: .4rem 0; display: flex; align-items: center; gap: .6rem; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }

/* ─── BLOG ─── */
.blog-card { background: var(--white); border: 1.5px solid var(--border-l); border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--lime-d); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img--placeholder { background: var(--off2); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--off2); font-size: 2.5rem; }
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .68rem; color: var(--muted); margin-bottom: .6rem; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; }
.blog-card-title { font-family: 'Unbounded', sans-serif; font-size: .88rem; margin-bottom: .5rem; line-height: 1.35; font-weight: 600; }
.blog-card-title a { color: var(--graphite); }
.blog-card-title a:hover { color: var(--lime-d); }
.blog-card-excerpt { font-size: .8rem; color: var(--muted); flex: 1; }
.blog-read-more { color: var(--lime-d); font-family: 'Unbounded', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 1rem; display: inline-flex; align-items: center; gap: .4rem; }
.blog-read-more:hover { color: var(--lime); gap: .6rem; }
.blog-detail-content { font-size: .95rem; line-height: 1.85; }
.blog-detail-content h2 { font-family: 'Unbounded', sans-serif; margin-top: 2.5rem; margin-bottom: .75rem; font-size: 1.4rem; font-weight: 700; }
.blog-detail-content h3 { font-family: 'Unbounded', sans-serif; margin-top: 1.75rem; margin-bottom: .5rem; font-size: 1.1rem; }
.blog-detail-content p { margin-bottom: 1rem; color: var(--text); }
.blog-detail-content img { max-width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }
.blog-detail-cover img { border-radius: var(--radius-lg); }

/* ─── SERVICE DETAIL ─── */
.service-detail-img img { max-height: 460px; object-fit: cover; width: 100%; border-radius: var(--radius-lg); }
.price-card { background: var(--white); border: 2px solid var(--lime); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(168,230,61,.15); }
.price-card-header { background: var(--graphite); padding: 1.5rem; }
.price-card-header h3 { color: var(--white); font-family: 'Unbounded', sans-serif; font-size: .88rem; margin-bottom: .5rem; font-weight: 600; }
.price-card-price { font-family: 'Unbounded', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--lime); }
.price-card-body { padding: 1.5rem; }
.price-card-body p { color: var(--muted); font-size: .82rem; margin-bottom: 1rem; }
.price-card-body .form-control { border-radius: var(--radius); border: 1.5px solid var(--border-l); }
.price-card-body .form-control:focus { border-color: var(--lime-d); box-shadow: 0 0 0 3px rgba(168,230,61,.15); }
.features-table .table { font-size: .85rem; }
.features-table .table td { padding: .7rem .8rem; }
.features-table .table tr:nth-child(even) { background: var(--off); }

/* ─── REVIEW CARDS (обычные страницы) ─── */
.review-card { background: var(--white); border: 1.5px solid var(--border-l); border-radius: var(--radius-lg); padding: 1.5rem; height: 100%; display: flex; flex-direction: column; transition: var(--tr); }
.review-card:hover { border-color: var(--lime-d); box-shadow: var(--shadow); }
.review-stars { color: var(--lime-d); font-size: .95rem; letter-spacing: 3px; margin-bottom: .75rem; }
.review-text { flex: 1; font-size: .85rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.review-avatar-placeholder { width: 36px; height: 36px; border-radius: 50%; background: var(--off2); display: flex; align-items: center; justify-content: center; color: var(--muted); }
.review-author span { font-weight: 700; font-size: .82rem; color: var(--graphite); }

/* ─── FOOTER ─── */
.site-footer { background: var(--graphite); padding: 3.5rem 0 0; border-top: 3px solid var(--lime); }
.footer-logo-wrap { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-bottom: 1rem; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--lime); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: 'Unbounded', sans-serif; font-size: .8rem; font-weight: 800; color: var(--graphite); }
.footer-logo-text { font-family: 'Unbounded', sans-serif; font-size: .9rem; font-weight: 700; color: var(--white); }
.footer-desc { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .5rem; }
.footer-socials a { width: 34px; height: 34px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid var(--border); color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: var(--tr); }
.footer-socials a:hover { background: var(--lime); color: var(--graphite); border-color: var(--lime); }
.footer-heading { font-family: 'Unbounded', sans-serif; color: rgba(255,255,255,.2); font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.4); font-size: .8rem; transition: var(--tr); }
.footer-links a:hover { color: var(--lime); padding-left: .25rem; }
.footer-contacts { list-style: none; padding: 0; margin: 0; }
.footer-contacts li { color: rgba(255,255,255,.4); font-size: .8rem; margin-bottom: .5rem; display: flex; gap: .6rem; }
.footer-contacts i { color: var(--lime); flex-shrink: 0; margin-top: .22rem; opacity: .7; }
.footer-contacts a { color: rgba(255,255,255,.4); }
.footer-contacts a:hover { color: var(--lime); }
.footer-divider { border-color: var(--border); margin: 2.5rem 0 1.25rem; }
.footer-bottom { padding-bottom: 1.5rem; font-size: .72rem; color: rgba(255,255,255,.15); }

/* ─── FLOAT & MOBILE ─── */
.float-call-btn {
  position: fixed; right: 1.75rem; bottom: 2rem; width: 56px; height: 56px;
  border-radius: 50%; background: var(--lime); color: var(--graphite) !important;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(168,230,61,.5); z-index: 900; transition: var(--tr);
  animation: float-pulse 3s ease-in-out infinite;
}
.float-call-btn:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(168,230,61,.6); }
@keyframes float-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(168,230,61,.5), 0 0 0 0 rgba(168,230,61,.3); }
  50% { box-shadow: 0 4px 24px rgba(168,230,61,.5), 0 0 0 14px rgba(168,230,61,0); }
}
@media (max-width:767px) { .float-call-btn { display: none; } }

.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1021;
  display: flex; background: rgba(28,31,38,.98);
  border-top: 1px solid rgba(168,230,61,.15);
  padding: .6rem .75rem; gap: .5rem;
}
.btn-mobile-call, .btn-mobile-wa {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: .75rem; font-family: 'Unbounded', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .5px;
  text-decoration: none; transition: var(--tr); border-radius: var(--radius);
}
.btn-mobile-call { background: var(--lime); color: var(--graphite) !important; }
.btn-mobile-wa { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7) !important; }
@media (max-width: 767px) { body { padding-bottom: 68px; } }

/* ─── MODAL ─── */
.modal-content { border-radius: var(--radius-lg); border: none; box-shadow: 0 24px 80px rgba(0,0,0,.18); }
.modal-header { background: var(--graphite); border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-bottom: none; padding: 1.4rem 1.6rem; }
.modal-title { color: var(--white); font-family: 'Unbounded', sans-serif; font-size: .88rem; font-weight: 700; }
.modal-header .btn-close { filter: invert(1); opacity: .5; }
.modal-body { padding: 1.6rem; }
.modal-body p { color: var(--muted); font-size: .85rem; }

/* ─── FORMS ─── */
.form-control { border: 1.5px solid var(--border-l); border-radius: var(--radius); padding: .75rem 1rem; font-size: .88rem; transition: var(--tr); background: var(--white); color: var(--text); }
.form-control:focus { border-color: var(--lime-d); box-shadow: 0 0 0 3px rgba(168,230,61,.12); outline: none; }
.form-control::placeholder { color: rgba(0,0,0,.25); }
.form-label { font-weight: 600; font-size: .72rem; color: var(--muted); margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .8px; }
.invalid-feedback { font-size: .78rem; }
.form-privacy { font-size: .68rem; color: var(--muted); }

/* ─── SECTION LAYOUT ─── */
.section-label { /* for backwards compat */
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--lime-d);
  margin-bottom: .5rem;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.fade-in-up { opacity: 0; transform: translateY(16px); animation: fadeInUp .65s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: none; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .hero-split { grid-template-columns: 55% 45%; }
}
@media (max-width: 991px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-left-inner { padding-left: 0 !important; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 180px; min-height: 260px; }
  .hero-photo-cell:nth-child(1) { grid-row: span 1; }
  .process-row::before { display: none; }
  .cat-nav { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pgrid-item:nth-last-child(1) { grid-column: span 1; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hstat-num { font-size: 1.1rem; }
  .hero-right { grid-template-columns: 1fr 1fr; min-height: 220px; }
  .lead-form-row { flex-direction: column; }
  .process-row { flex-direction: column; gap: 1.5rem; }
  .pstep { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .pstep-dot { margin: 0; flex-shrink: 0; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .pgrid-item:nth-child(1) { grid-row: span 1; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .lead-benefits-row { flex-direction: column; gap: .6rem; }
}
