:root {
  --bg: #ffffff;
  --panel: #f8f9fa;
  --text: #1a1a1a;
  --muted: #6c757d;
  --primary: #000000;
  --primary-600: #333333;
  --accent: #f59e0b;
  --border: #dee2e6;
  --success: #28a745;
  --light-bg: #f1f3f4;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding-top: 84px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  transition: padding-top 0.3s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 92%); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 8px 12px; background: var(--panel); border-radius: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 18px; border-radius: 12px; border: 1px solid var(--border);
  font-weight: 600; transition: all .2s ease; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(30,58,138,.25); position: relative; overflow: hidden; }
.btn-primary::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transition: left .5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--primary-600); }
.btn-outline { background: transparent; color: var(--text); }
.btn-outline:hover { background: var(--light-bg); }

.site-header { 
  position: fixed; 
  top: 0; 
  left: 0;
  right: 0;
  z-index: 1000; 
  background: linear-gradient(135deg, rgba(248,250,252,0.95) 0%, rgba(226,232,240,0.95) 100%); 
  backdrop-filter: saturate(180%) blur(15px); 
  border-bottom: 2px solid var(--primary); 
  box-shadow: 0 8px 32px rgba(30,58,138,0.15);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: linear-gradient(135deg, rgba(248,250,252,0.98) 0%, rgba(226,232,240,0.98) 100%);
  box-shadow: 0 12px 40px rgba(30,58,138,0.2);
  backdrop-filter: saturate(180%) blur(20px);
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 14px 0; 
  gap: 24px; 
  min-height: 84px; 
  transition: all 0.3s ease;
}
.site-header.scrolled .header-inner {
  min-height: 76px;
  padding: 10px 0;
}
.header-center { 
  flex: 1; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}
.header-right { 
  display: flex; 
  align-items: center; 
  gap: 18px; 
  flex-shrink: 0; 
}
.logo { 
  display: inline-flex; 
  align-items: center; 
  gap: 14px; 
  font-family: Montserrat, Inter, sans-serif; 
  font-weight: 800; 
  font-size: 17px; 
  letter-spacing: .2px; 
  color: var(--primary); 
  white-space: nowrap; 
  flex-shrink: 0; 
  transition: all 0.3s ease;
  position: relative;
}
.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}
.logo:hover::after {
  width: 100%;
}
.logo span { 
  white-space: nowrap; 
  font-size: 16px;
  letter-spacing: 0.1px;
}
.logo img { border-radius: 12px; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,.2); transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.05); }
.menu { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  height: 100%; 
  white-space: nowrap;
}
.menu a { 
  padding: 10px 14px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  height: 40px; 
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30,58,138,0.1), transparent);
  transition: left 0.5s ease;
}
.menu a:hover::before {
  left: 100%;
}
.menu a:hover { 
  background: linear-gradient(135deg, rgba(30,58,138,0.08) 0%, rgba(245,158,11,0.08) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,58,138,0.15);
}
.nav-toggle { display: none; }

.header-contacts { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  height: 100%; 
}
.contact-item { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  white-space: nowrap; 
  height: 44px; 
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.contact-item:hover {
  background: rgba(30,58,138,0.05);
  transform: translateY(-1px);
}
.contact-icon { 
  font-size: 16px; 
  transition: transform 0.3s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.1);
}
.contact-link { 
  color: var(--primary); 
  font-weight: 600; 
  font-size: 14px; 
  text-decoration: none; 
  transition: all 0.3s ease; 
}
.contact-link:hover { 
  color: var(--accent); 
}

.hero { 
  padding: 40px 0; 
  position: relative; 
  overflow: hidden; 
  min-height: 90vh; 
  display: flex; 
  align-items: center; 
}

/* .hero-background removed - using .hero-banner instead */

.hero-overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: linear-gradient(135deg, rgba(30,58,138,0.8) 0%, rgba(0,0,0,0.6) 100%); 
  z-index: 2; 
}

.hero-inner { 
  position: relative; 
  z-index: 3; 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-copy {
  text-align: left;
}

.hero h1 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-weight: 700; 
  font-size: clamp(36px, 5vw, 64px); 
  line-height: 1.1; 
  margin: 0 0 20px; 
  color: white; 
  text-shadow: 0 4px 8px rgba(0,0,0,0.5); 
}

.hero p { 
  color: rgba(255,255,255,0.95); 
  margin: 0 0 30px; 
  font-size: 20px; 
  line-height: 1.6; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}

.hero-actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
}

/* Hero Gallery */
.hero-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 400px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 16px 12px 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Hero Benefits - New Modern Style */
.hero-benefits { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 16px; 
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(15px);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  color: white;
}

.benefit-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.benefit-icon {
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.benefit-item span {
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Gallery Animations */
@keyframes galleryItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-item-animated {
  animation: galleryItemFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.gallery-item.active {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 20px 40px rgba(0,0,0,0.25);
  transform: translateY(-4px) scale(1.02);
}

.gallery-item.active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffffff, transparent, #ffffff);
  border-radius: 18px;
  z-index: -1;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-copy {
    text-align: center;
  }
  
  .gallery-grid {
    max-width: 350px;
  }
  
  .hero-benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .hero-content {
    gap: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 280px;
    gap: 8px;
  }
  
  .gallery-item {
    aspect-ratio: 1;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-item {
    padding: 12px 16px;
  }
  
  .benefit-icon {
    min-width: 36px;
    height: 36px;
    font-size: 20px;
  }
}



.section { padding: 56px 0; }
.section h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: clamp(28px, 4vw, 48px); margin: 0 0 16px; letter-spacing: .2px; text-align: center; position: relative; color: var(--primary); }
.section h2::after { content: ""; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; }
.section-lead { color: var(--muted); margin: 0 0 32px; font-size: 18px; line-height: 1.6; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }
.refs a { text-decoration: underline; opacity: .9; }

.services .service-group { 
  background: var(--panel); 
  border: 1px solid var(--border); 
  border-radius: 24px; 
  padding: 32px; 
  margin-bottom: 32px; 
  position: relative; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  overflow: hidden;
}
.services .service-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30,58,138,.12);
  border-color: rgba(30,58,138,0.2);
}
.services .service-group.design-section { background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(30,58,138,0.1); position: relative; overflow: hidden; }
.services .service-group.design-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/assets/img/uploads/design/fasade-bg.avif') center/cover no-repeat; opacity: 0.12; z-index: -1; }
.services .service-group.design-section h3 { text-shadow: 0 1px 3px rgba(255,255,255,0.8); }
.services .service-group.design-section .check-list li { text-shadow: 0 1px 2px rgba(255,255,255,0.6); font-weight: 500; }
.services .service-group.design-section .benefit-highlight { background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-left: 4px solid var(--accent); }
.services .service-group.design-section:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.15); }
.services .service-group.design-section:hover::before { opacity: 0.18; }

/* Монтаж систем */
.services .service-group.montage-section { background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(30,58,138,0.1); position: relative; overflow: hidden; }
.services .service-group.montage-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/assets/img/uploads/design/montage-bg.avif') center/cover no-repeat; opacity: 0.12; z-index: -1; }
.services .service-group.montage-section h3 { text-shadow: 0 1px 3px rgba(255,255,255,0.8); }
.services .service-group.montage-section .grid-list li { text-shadow: 0 1px 2px rgba(255,255,255,0.6); font-weight: 500; }
.services .service-group.montage-section .benefit-highlight { background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-left: 4px solid var(--accent); }
.services .service-group.montage-section:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.15); }
.services .service-group.montage-section:hover::before { opacity: 0.18; }

/* Обслуговування */
.services .service-group.service-section { background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(30,58,138,0.1); position: relative; overflow: hidden; }
.services .service-group.service-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/assets/img/uploads/design/service-bg.avif') center/cover no-repeat; opacity: 0.12; z-index: -1; }
.services .service-group.service-section h3 { text-shadow: 0 1px 3px rgba(255,255,255,0.8); }
.services .service-group.service-section .grid-list li { text-shadow: 0 1px 2px rgba(255,255,255,0.6); font-weight: 500; }
.services .service-group.service-section .benefit-highlight { background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-left: 4px solid var(--accent); }
.services .service-group.service-section:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.15); }
.services .service-group.service-section:hover::before { opacity: 0.18; }

/* Аудит */
.services .service-group.audit-section { background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(30,58,138,0.1); position: relative; overflow: hidden; }
.services .service-group.audit-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/assets/img/uploads/design/audit-bg.avif') center/cover no-repeat; opacity: 0.12; z-index: -1; }
.services .service-group.audit-section h3 { text-shadow: 0 1px 3px rgba(255,255,255,0.8); }
.services .service-group.audit-section p { text-shadow: 0 1px 2px rgba(255,255,255,0.6); font-weight: 500; }
.services .service-group.audit-section .benefit-highlight { background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-left: 4px solid var(--accent); }
.services .service-group.audit-section:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.15); }
.services .service-group.audit-section:hover::before { opacity: 0.18; }

/* Продаж обладнання */
.services .service-group.sale-section { background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%); backdrop-filter: blur(10px); border: 1px solid rgba(30,58,138,0.1); position: relative; overflow: hidden; }
.services .service-group.sale-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/assets/img/uploads/design/sale-bg.avif') center/cover no-repeat; opacity: 0.12; z-index: -1; }
.services .service-group.sale-section h3 { text-shadow: 0 1px 3px rgba(255,255,255,0.8); }
.services .service-group.sale-section .check-list li { text-shadow: 0 1px 2px rgba(255,255,255,0.6); font-weight: 500; }
.services .service-group.sale-section .benefit-highlight { background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-left: 4px solid var(--accent); }
.services .service-group.sale-section:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.15); }
.services .service-group.sale-section:hover::before { opacity: 0.18; }
.services .service-group::before { content: ""; position: absolute; inset: 0; border-radius: 20px; pointer-events: none; box-shadow: 0 0 0 1px rgba(30,58,138,.1); }
.services .service-group h3 { 
  font-family: Montserrat, Inter, sans-serif; 
  font-size: clamp(22px, 2.8vw, 32px); 
  font-weight: 700;
  margin: 0 0 20px; 
  color: var(--primary); 
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.services .service-group h3::before { 
  content: ""; 
  width: 48px; 
  height: 4px; 
  background: linear-gradient(90deg, var(--primary), var(--accent)); 
  border-radius: 2px;
  flex-shrink: 0;
}
.services .service-group h3 .sub { 
  display: block; 
  font-family: Inter, system-ui; 
  font-weight: 500; 
  font-size: 14px; 
  color: var(--muted); 
  margin-top: 4px;
  font-style: italic;
}
.benefit-highlight { background: var(--light-bg); border-left: 4px solid var(--accent); padding: 16px 20px; margin: 16px 0 0; border-radius: 0 12px 12px 0; font-size: 16px; font-weight: 500; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.company-philosophy { margin-top: 24px; text-align: center; }
.company-philosophy blockquote { border: none; margin: 0; padding: 0; }
.company-philosophy blockquote p { font-size: 18px; line-height: 1.5; color: var(--text); font-style: italic; }
.check-list { padding-left: 18px; }
.check-list li { margin: 6px 0; font-size: 15px; color: var(--text); }
.grid-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 18px; }

/* small gallery per service */
.service-gallery { margin-top: 20px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.service-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 16px; border: 1px solid var(--border); background: var(--light-bg); object-position: center; transition: all .3s ease; }
.service-gallery img:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(30,58,138,.15); }

.about .stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; list-style: none; padding: 0; margin: 24px 0 0; }
.about .stats li { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 24px; text-align: center; transition: all .3s ease; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.about .stats strong { display: block; font-weight: 700; font-size: 18px; margin-bottom: 8px; color: var(--primary); }
.about .stats span { color: var(--muted); }
.about .stats li:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }

.catalog .cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.05); position: relative; transition: all .3s ease; }
.card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(30,58,138,.03), transparent 40%, rgba(245,158,11,.03)); }
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.card img { aspect-ratio: 4/3; object-fit: cover; object-position: center; border-radius: 12px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover img { transform: scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.card h3 { margin: 16px 16px 0; font-size: 20px; font-weight: 600; color: var(--primary); }
.card p { margin: 8px 16px 20px; color: var(--muted); font-size: 15px; line-height: 1.5; }

.contacts .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 12px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; border-radius: 12px; }

.contact-form .form { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label { display: grid; gap: 6px; }
.form-grid .wide { grid-column: 1 / -1; }
input, textarea { width: 100%; padding: 16px 16px; border-radius: 16px; border: 1px solid var(--border); background: #ffffff; color: var(--text); transition: all .3s ease; }
input:focus, textarea:focus { outline: 2px solid var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,58,138,.1); }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.form-note { color: var(--muted); font-size: 14px; }

.site-footer { border-top: 1px solid var(--border); background: var(--panel); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; }
.footer-links { display: flex; gap: 14px; list-style: none; padding: 0; margin: 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-brand img { border-radius: 8px; object-fit: cover; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.footer-copy { color: var(--muted); }

@media (max-width: 1200px) {
  .header-inner { padding: 12px 0; gap: 18px; min-height: 80px; }
  .site-header.scrolled .header-inner { min-height: 72px; padding: 8px 0; }
  .header-right { gap: 14px; }
  .header-contacts { gap: 14px; }
  .contact-link { font-size: 13px; }
  .logo { font-size: 16px; gap: 10px; }
  .logo span { font-size: 15px; }
  .logo img { width: 68px; height: 68px; }
  .menu { gap: 16px; }
  .menu a { padding: 8px 12px; font-size: 14px; height: 36px; }
  body { padding-top: 80px; }
}

@media (max-width: 1000px) {
  .header-inner { padding: 10px 0; gap: 14px; min-height: 76px; }
  .site-header.scrolled .header-inner { min-height: 68px; padding: 6px 0; }
  .logo { font-size: 14px; gap: 8px; }
  .logo span { font-size: 13px; }
  .logo img { width: 60px; height: 60px; }
  .menu { gap: 12px; }
  .menu a { padding: 6px 10px; font-size: 13px; height: 32px; }
  .header-contacts { gap: 12px; }
  .contact-item { height: 32px; padding: 4px 8px; }
  .contact-link { font-size: 12px; }
  body { padding-top: 76px; }
  
  .hero-inner { grid-template-columns: 1fr; }
  .catalog .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero { min-height: 70vh; }
  /* .hero-background removed */
}

@media (max-width: 720px) {
  .header-inner { padding: 8px 0; gap: 10px; min-height: 64px; }
  .site-header.scrolled .header-inner { min-height: 56px; padding: 4px 0; }
  .header-contacts { display: none; }
  .header-right { gap: 8px; }
  .logo { font-size: 13px; gap: 6px; }
  .logo span { font-size: 12px; }
  .logo img { width: 52px; height: 52px; }
  .menu { gap: 8px; }
  .menu a { padding: 4px 8px; font-size: 12px; height: 28px; }
  body { padding-top: 64px; }
  
  .nav-toggle { display: none; }
  .contacts .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .catalog .cards { grid-template-columns: 1fr; }
  .about .stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 60vh; padding: 60px 0 20px; }
  .hero-benefits { grid-template-columns: 1fr; }
  .hero-content { flex-direction: column; text-align: center; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item { aspect-ratio: 1; }
  .benefit-item { padding: 12px; }
  .benefit-icon { width: 40px; height: 40px; font-size: 18px; }
}
