/* ========================================
   ТЁМНАЯ ТЕМА
   ======================================== */

:root {
  --gold: #E8A020;
  --gold-light: #F5C060;
  --gold-dim: rgba(232,160,32,0.15);
  --dark: #0E0E0E;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-4: #262626;
  --gray: #888;
  --gray-light: #AAAAAA;
  --white: #F5F3EF;
  --off-white: #EAE7E1;
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Golos Text', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, .brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
#navbar.scrolled {
  height: 56px;
  background: rgba(14,14,14,0.98);
}
.nav-brand {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-brand span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.accent { color: var(--gold); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone a {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}
.btn-nav {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(14,14,14,0.3) 0%, rgba(14,14,14,0.6) 50%, rgba(14,14,14,0.95) 100%),
    url('/images/examples/thumbnails/IMG_8788_resize.jpg') center/cover no-repeat;
}
.hero-accent {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(232,160,32,0.4);
  border-radius: 100px;
  margin-bottom: 2rem;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 55ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}
.btn-primary {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,160,32,0.35);
}
.btn-secondary {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item .num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-item .txt {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* SECTIONS */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  max-width: 18ch;
  color: var(--white);
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* CATALOG */
#cat { scroll-margin-top: 80px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.prod-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(232,160,32,0.25);
}
.prod-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--dark-4);
}
.prod-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.prod-price {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.prod-price strong {
  font-size: 1.1rem;
  color: var(--gold);
  font-family: 'Unbounded', sans-serif;
}
.prod-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}
.prod-actions {
  display: flex;
  gap: 0.6rem;
}
.btn-card-primary {
  flex: 1;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 11px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.btn-card-primary:hover { background: var(--gold-light); }
.btn-card-sec {
  font-family: 'Golos Text', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 10px;
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-card-sec:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

/* CAROUSEL */
.card-carousel { position: relative; }
.card-carousel img { display: none; }
.card-carousel img.active { display: block; }
.carousel-dot-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.carousel-dot-nav span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot-nav span.active {
  background: var(--gold);
  transform: scale(1.3);
}
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  z-index: 2;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.carousel-arrow:hover { background: rgba(0,0,0,0.8); }
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

/* PRICE CTA */
.price-cta-card {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1rem;
}
.price-cta-card .icon { font-size: 3rem; line-height: 1; }
.price-cta-card h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.price-cta-card p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.6;
}

/* CALCULATOR */
.calc-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.calc-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.calc-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 500;
}
.form-input {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--gray); }
#calc-result {
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
  display: none;
}
#calc-result.show { display: block; }
#calc-result .res-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 6px;
}
#calc-result .res-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
#calc-result .res-old {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
}
#calc-result .res-discount {
  font-size: 0.8rem;
  color: #4caf50;
  margin-top: 4px;
}

/* GALLERY */
#examp { scroll-margin-top: 80px; }
.gallery-carousel-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.gallery-slide {
  min-width: 100%;
  position: relative;
}
.gallery-slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.gallery-caption small {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.gallery-nav {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 8px;
}
.gallery-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.gallery-btn:hover { background: rgba(255,255,255,0.3); }
.gallery-indicators {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1rem;
}
.gallery-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-dot.active { background: var(--gold); }

/* ADVANTAGES */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.adv-item {
  background: var(--dark-2);
  padding: 2.5rem;
  transition: background 0.25s;
}
.adv-item:hover { background: var(--dark-3); }
.adv-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.adv-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.3;
  color: var(--white);
}
.adv-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ORDER FORM */
#order { scroll-margin-top: 80px; }
.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.order-info .big-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.order-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.benefit-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}
.benefit-text span {
  font-size: 0.82rem;
  color: var(--gray);
}
.order-form-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.order-form-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.order-form-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.form-group-full { margin-bottom: 1rem; }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-agree {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 1rem;
  line-height: 1.5;
}
.form-agree a { color: var(--gold); }

/* FAQ */
#FAQ { scroll-margin-top: 80px; }
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--white);
}
.faq-q-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  margin-top: 2px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ARTICLES */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,160,32,0.2);
}
.article-img {
  height: 190px;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.article-img img {
  max-height: 130px;
  max-width: 80%;
  object-fit: contain;
}
.article-img.photo img {
  max-height: none;
  max-width: none;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.article-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.article-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.article-excerpt {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}
.article-cta-link {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.article-cta-link:hover { gap: 10px; }
.article-coming {
  padding: 8px 16px;
  background: rgba(232,160,32,0.08);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--gold);
  text-align: center;
}
.article-guarantee {
  padding: 10px 16px;
  background: rgba(76,175,80,0.08);
  border-radius: 8px;
  border-left: 3px solid #4caf50;
  font-size: 0.82rem;
  color: #81c784;
  font-weight: 600;
}

/* FOOTER */
.footer-map {
  width: 100%;
  background: var(--dark-2);
  padding: 0;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(0.4) brightness(0.7) contrast(1.1);
}
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  text-decoration: none;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact:hover { color: var(--gold); }
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-addr {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-map-link {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.footer-map-link:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  max-width: 60ch;
}
.footer-dev {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}
.footer-dev:hover { color: var(--gold); }

/* CITIES STRIP */
.cities-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 2rem;
}
.cities-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cities-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-right: 0.5rem;
}
.city-pill {
  font-family: 'Golos Text', sans-serif;
  font-size: 0.82rem;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.city-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 5000;
  padding: 1rem 2rem;
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.82rem;
  color: var(--gray-light);
}
.btn-cookie {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--dark-4);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cookie:hover { background: var(--dark); border-color: rgba(255,255,255,0.3); }

/* TOAST */
#toast-success {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9000;
  background: var(--dark-3);
  border: 1px solid rgba(76,175,80,0.4);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  font-size: 0.9rem;
  color: #81c784;
  font-weight: 500;
  max-width: 360px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
#toast-success.show { transform: translateY(0); }

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* USES GRID */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.use-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.use-item:hover {
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-3px);
  color: var(--white);
}
.use-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 3px;
}
.use-text {
  font-size: 0.9rem;
  line-height: 1.4;
}
.use-text strong { font-weight: 600; }

/* CERTIFICATE */
.cert-section { text-align: center; padding: 3rem 2rem; }
.cert-section img {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .order-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  #navbar.mobile-open .nav-links,
  #navbar.mobile-open .nav-phone {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 1.2rem;
  }
  #navbar.mobile-open .nav-phone {
    top: auto;
    position: static;
    padding: 0 0 1rem;
  }
  #navbar { flex-wrap: wrap; height: auto; padding: 1rem 2rem; }
  .hero-title { font-size: 2.2rem; }
  .gallery-slide img { height: 280px; }
  .adv-grid { grid-template-columns: 1fr; }
  
  /* Ускорение каталога на мобильных */
  .prod-card-img {
    height: 180px;  /* меньше высота = быстрее появление */
  }
  .catalog-grid {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3rem 1rem; }  /* уменьшил отступы */
  .gallery-slide img { height: 220px; }
  .catalog-grid { 
    grid-template-columns: 1fr;  /* исправлено! */
    gap: 0.8rem;
  }
  .prod-card-img {
    height: 160px;
  }
}


/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
<style>
/* ── FOOTER ── */
footer {
  background: var(--dark-2, #161616);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2rem;
  font-family: 'Golos Text', sans-serif;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name { font-family: 'Unbounded',sans-serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 0.4rem; letter-spacing: -0.03em; color: #F5F3EF; }
.footer-brand-name span { color: #E8A020; }
.footer-tagline { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }
.footer-contact { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; color: #AAAAAA; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.footer-contact:hover { color: #E8A020; }
.footer-contact-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.footer-workhours { margin-top: 1.5rem; padding: 1rem 1.2rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; }
.footer-workhours-label { font-family: 'Unbounded',sans-serif; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #E8A020; font-weight: 700; margin-bottom: 0.7rem; }
.footer-workhours-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.footer-workhours-row span:first-child { font-size: 0.82rem; color: #AAAAAA; }
.footer-workhours-row span:last-child { font-size: 0.82rem; color: #F5F3EF; font-weight: 600; }
.footer-workhours-row.off span:last-child { color: #888; font-weight: 400; }
.footer-online { margin-top: 0.6rem; display: flex; align-items: center; gap: 6px; }
.footer-online-dot { width: 7px; height: 7px; background: #4caf50; border-radius: 50%; flex-shrink: 0; animation: fpulse 2s infinite; }
@keyframes fpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.footer-online span { font-size: 0.75rem; color: #81c784; }
.footer-addr { font-size: 0.85rem; color: #888; line-height: 1.65; margin-bottom: 1rem; }
.footer-addr strong { color: #F5F3EF; display: block; margin-bottom: 6px; }
.footer-map-link { font-size: 0.85rem; color: #E8A020; text-decoration: none; }
.footer-map-link:hover { text-decoration: underline; }
.footer-req-label { font-family: 'Unbounded',sans-serif; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #E8A020; font-weight: 700; margin-bottom: 1rem; }
.footer-req-item { padding: 0.8rem 1rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; margin-bottom: 0.6rem; }
.footer-req-item-label { font-size: 0.72rem; color: #888; margin-bottom: 3px; letter-spacing: 0.04em; }
.footer-req-item-value { font-size: 0.83rem; color: #F5F3EF; font-weight: 600; word-break: break-all; }
.footer-req-item-sub { font-size: 0.78rem; color: #888; margin-top: 2px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.footer-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.5; max-width: 60ch; }
.footer-dev { font-size: 0.75rem; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-dev:hover { color: #E8A020; }
.cities-strip { background: var(--dark, #0E0E0E); border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 2rem; }
.cities-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cities-label { font-size: 0.8rem; color: #888; font-family: 'Golos Text', sans-serif; }
.city-pill { font-size: 0.82rem; color: #AAAAAA; border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 5px 14px; text-decoration: none; transition: all 0.2s; }
.city-pill:hover { border-color: #E8A020; color: #E8A020; }
@media (max-width: 1100px) { .footer-inner { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 700px)  { .footer-inner { grid-template-columns: 1fr !important; gap: 2rem; } }
</style>
