/* СтройКомплектБетон — современный стиль */
:root {
  --color-primary: #0f172a;
  --color-primary-soft: #1e293b;
  --color-accent: #e85d04;
  --color-accent-hover: #d45304;
  --color-accent-glow: rgba(232, 93, 4, 0.25);
  --color-gray: #64748b;
  --color-gray-light: #94a3b8;
  --color-light: #f8fafc;
  --color-border: #e2e8f0;
  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--color-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* Top Bar */
.topbar {
  background: var(--color-light);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a:hover { color: var(--color-accent); }
.topbar-phone {
  font-weight: 600;
  color: var(--color-primary);
}
.topbar-phone:hover { color: var(--color-accent); }
.topbar-right { display: flex; align-items: center; gap: 15px; }

/* Header */
.header {
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  height: 45px;
  flex-shrink: 0;
}
.logo img { height: 100%; width: auto; }
.nav { display: flex; align-items: center; gap: 35px; }
.nav-dropdown { display: flex; align-items: center; gap: 35px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--color-accent); }
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 8px 12px;
  min-width: 220px;
}
.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
}
.search-box svg { width: 18px; height: 18px; color: var(--color-gray); flex-shrink: 0; margin-right: 8px; }
.btn-header {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff !important;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: 0 4px 14px var(--color-accent-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--color-accent-glow);
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/mbr-1-1920x1280.jpeg') center/cover;
  opacity: 0.4;
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,0.94) 0%, rgba(15,23,42,0.75) 45%, rgba(15,23,42,0.4) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  max-width: 560px;
}
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff !important;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px var(--color-accent-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--color-accent-glow);
}
.hero-badges { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.hero-stat:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.hero-stat strong { display: block; font-size: 1.75rem; color: #fff; margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* Features */
.features {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 50%, #f1f5f9 100%);
  border-bottom: 1px solid var(--color-border);
}
.features-heading {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.features-cards {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232, 93, 4, 0.08);
  border-color: rgba(232, 93, 4, 0.12);
}
.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card-icon svg {
  width: 28px;
  height: 28px;
}
.feature-icon-shield {
  background: rgba(232, 93, 4, 0.1);
  color: var(--color-accent);
}
.feature-icon-truck {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.feature-icon-cert {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}
.feature-icon-phone {
  background: rgba(168, 85, 247, 0.12);
  color: #7c3aed;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
}
.feature-card a {
  color: var(--color-accent);
  font-weight: 500;
}
.feature-card a:hover {
  text-decoration: underline;
}
/* Legacy feature-item (kept for compatibility) */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-text strong { display: block; margin-bottom: 4px; font-size: 14px; }
.feature-text span { font-size: 13px; color: var(--color-gray); }

/* Benefits - 3 причины */
.benefits-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 4px;
}
.benefits-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.benefits-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.benefits-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.benefit-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform var(--transition-slow), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: height 0.25s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232, 93, 4, 0.12);
  border-color: rgba(232, 93, 4, 0.2);
}
.benefit-card:hover::before {
  height: 100%;
}
.benefit-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(232, 93, 4, 0.08);
  line-height: 1;
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(232, 93, 4, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
}
.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.benefit-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-gray);
  margin: 0;
}

/* Categories */
.categories {
  padding: 70px 0;
  background: #fff;
}
.categories-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.categories-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 4px;
}
.categories-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.categories-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.categories-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.category-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition-slow), box-shadow var(--transition), border-color var(--transition);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232, 93, 4, 0.1);
  border-color: rgba(232, 93, 4, 0.15);
}
.category-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}
.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.category-card:hover .category-card-image img {
  transform: scale(1.05);
}
.category-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.category-desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
}
.category-action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.category-card-pdf:hover .category-action {
  color: var(--color-accent-hover);
}
.category-card-request .category-action {
  color: #16a34a;
}
.category-card-request:hover .category-action {
  color: #15803d;
}

/* Recommendations */
.recommendations-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #f1f5f9 100%);
}
.recommendations-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.recommendations-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 4px;
}
.recommendations-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.recommendations-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.recommendations-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0;
}
.recommendations-slider-wrap {
  position: relative;
  padding: 0 50px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.slider-btn:hover:not(:disabled) {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.2);
}
.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.slider-btn svg {
  width: 24px;
  height: 24px;
}
.slider-btn-prev { left: 0; }
.slider-btn-next { right: 0; }
.recommendations-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 8px;
}
.recommendations-slider::-webkit-scrollbar {
  height: 6px;
}
.recommendations-slider::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}
.recommendations-slider::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.recommendation-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition-slow), box-shadow var(--transition), border-color var(--transition);
}
.recommendation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(232, 93, 4, 0.08);
  border-color: rgba(232, 93, 4, 0.12);
}
.recommendation-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e2e8f0;
}
.recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.recommendation-card:hover .recommendation-image img {
  transform: scale(1.05);
}
.recommendation-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #22c55e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.recommendation-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.recommendation-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.recommendation-body p {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommendation-action {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
  transition: color 0.2s;
}
.recommendation-card:hover .recommendation-action {
  color: var(--color-accent-hover);
}
/* Card "Весь каталог" */
.recommendation-card-all .recommendation-action {
  color: var(--color-primary);
}
.recommendation-card-all:hover .recommendation-action {
  color: var(--color-accent);
}
.recommendation-image-more {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-gray);
  font-size: 14px;
}
.recommendation-more-icon {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}
.recommendation-card-all:hover .recommendation-image-more {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.08) 0%, rgba(232, 93, 4, 0.04) 100%);
  color: var(--color-primary);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.slider-dot:hover {
  background: #94a3b8;
}
.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #fff;
}
.footer-top {
  padding: 24px 0;
  background: rgba(232, 93, 4, 0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-cta-text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--color-accent); }
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-footer-cta:hover { background: var(--color-accent-hover); }
.footer-main {
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
}
.footer-about { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.65; }
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}
.footer-description {
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-social svg {
  width: 20px;
  height: 20px;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--color-accent);
  opacity: 0.9;
}
.footer-contact-item a {
  display: inline;
  padding: 0;
}
.footer-contact-item a:hover { color: var(--color-accent); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-legal a:hover { color: var(--color-accent); }
.footer-simple .footer-bottom { border-top: none; padding-top: 32px; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 16px var(--color-accent-glow);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-accent-glow);
}

/* Contact strip */
.contact-strip {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
  color: #fff;
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.contact-strip a, .contact-strip span { color: #fff; display: inline-flex; align-items: center; }
.contact-strip a {
  padding: 8px 0;
  min-height: 44px;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.contact-strip a:hover { opacity: 0.9; }
.contact-strip svg { width: 18px; height: 18px; margin-right: 8px; flex-shrink: 0; opacity: 0.9; }

/* About with image */
.about-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 50%, #fff 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 4px;
}
.about-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.about-content h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.about-lead {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about-content p {
  margin-bottom: 1rem;
  color: var(--color-gray);
  line-height: 1.75;
}
.about-highlights {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.6rem 0;
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.5;
}
.about-highlight svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}
.about-cta-text {
  margin-top: 1.5rem;
  font-size: 1rem;
}
.about-contact-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(232, 93, 4, 0.06);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}
.about-contact-box p {
  margin-bottom: 1rem;
}
.about-contact-box a {
  color: var(--color-accent);
  font-weight: 600;
}
.about-contact-box a:hover {
  text-decoration: underline;
}
.btn-about {
  display: inline-block;
  background: var(--color-accent);
  color: #fff !important;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-about:hover {
  background: var(--color-accent-hover);
  text-decoration: none !important;
}
.about-visual {
  position: relative;
}
.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-align: center;
}
.about-image-badge strong {
  display: block;
  font-size: 1.75rem;
  color: var(--color-accent);
  line-height: 1.2;
}
.about-image-badge span {
  font-size: 13px;
  color: var(--color-gray);
}

/* Steps */
.steps-section {
  padding: 70px 0;
  background: #fff;
}
.steps-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.steps-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 4px;
}
.steps-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}
.steps-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.steps-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0;
}
.steps-timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  padding: 1.75rem 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.25s;
}
.step-card:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: rgba(232, 93, 4, 0.15);
  transform: translateY(-2px);
}
.step-card-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.step-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(232, 93, 4, 0.1);
  color: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card-icon svg {
  width: 24px;
  height: 24px;
}
.step-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}
.step-card a {
  color: var(--color-accent);
  font-weight: 500;
}
.step-card a:hover {
  text-decoration: underline;
}
.step-connector {
  width: 24px;
  min-width: 24px;
  align-self: center;
  flex-shrink: 0;
  padding: 0 4px;
}
.step-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 4px, transparent 4px, transparent 8px);
}

/* CTA Banner */
/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #d45304 50%, #c24903 100%);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-banner-content {
  text-align: left;
}
.cta-banner h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  font-size: 1.05rem;
}
.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-cta-primary {
  background: #fff;
  color: var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-cta-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.cta-banner-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 500;
}
.cta-feature svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Delivery full */
/* Delivery */
.delivery-section {
  position: relative;
  padding: 70px 0;
  color: #fff;
  overflow: hidden;
}
.delivery-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2438 50%, #0a1e2e 100%);
}
.delivery-section .container {
  position: relative;
  z-index: 1;
}
.delivery-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.delivery-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 4px;
}
.delivery-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 1px;
}
.delivery-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}
.delivery-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin: 0;
}
.delivery-content {
  max-width: 800px;
  margin: 0 auto;
}
.delivery-main {
  text-align: center;
  margin-bottom: 2rem;
}
.delivery-main p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
}
.delivery-main p:last-child {
  margin-bottom: 0;
}
.delivery-regions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.delivery-region {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.delivery-region svg {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}
.delivery-transport h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  text-align: center;
}
.delivery-transport-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.delivery-transport-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s;
}
.delivery-transport-item:hover {
  background: rgba(255,255,255,0.18);
}
.delivery-transport-item svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* Contact */
.contact-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.contact-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.contact-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.contact-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item:last-of-type {
  margin-bottom: 0;
}
.contact-item-req { margin-bottom: 1rem; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232, 93, 4, 0.08);
  color: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg {
  width: 22px;
  height: 22px;
}
.contact-item-content h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  margin-bottom: 0.35rem;
}
.contact-item-content p {
  margin: 0 0 0.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
}
.contact-item-content a {
  color: var(--color-accent);
  font-weight: 500;
}
.contact-item-content a:hover {
  text-decoration: underline;
}
.contact-link {
  font-size: 14px !important;
}
.contact-btn-call,
.contact-btn-email {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 8px;
  transition: background 0.2s;
}
.contact-btn-call:hover,
.contact-btn-email:hover {
  background: var(--color-accent-hover);
  text-decoration: none !important;
}
.contact-btn-email {
  background: transparent;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent);
}
.contact-btn-email:hover {
  background: rgba(232, 93, 4, 0.08);
}
.contact-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
}
.contact-hours svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}
.contact-form-box {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.contact-form-desc {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-contact-submit {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--color-accent-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--color-accent-glow);
}
.form-note { font-size: 13px; color: var(--color-gray); margin-top: 1rem; line-height: 1.5; }
.form-note a { color: var(--color-accent); }
.form-message { margin-bottom: 1rem; padding: 12px 16px; border-radius: 8px; font-size: 14px; display: none; }
.form-message.visible { display: block; }
.form-message.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.form-group-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; padding: 0; }

/* Map */
.map-section {
  height: 400px;
  background: #e5e7eb;
}
#yandex-map {
  width: 100%;
  height: 100%;
}

/* Mobile menu */
.menu-toggle { display: none; }

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-cards { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-section { padding: 50px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .recommendation-card { flex: 0 0 calc((100% - 24px) / 2); }
  .recommendations-slider-wrap { padding: 0 40px; }
  .delivery-section { padding: 50px 0; }
  .delivery-regions { gap: 1rem; padding: 1.25rem 0; }
  .delivery-transport-list { gap: 0.75rem; }
  .delivery-transport-item { padding: 10px 16px; font-size: 14px; }
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner-content { text-align: center; }
  .cta-banner-buttons { justify-content: center; }
  .cta-banner-features { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .steps-timeline { flex-direction: column; align-items: stretch; gap: 0; }
  .step-card { max-width: none; }
  .step-connector { width: 100%; height: 1px; min-width: 0; padding: 0; margin: 0.5rem 0; }
  .step-connector::before { height: 1px; background: #e2e8f0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
  .about-section { padding: 50px 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .header .container { overflow: visible; }
  .header-inner { overflow: visible; }
  .nav {
    position: relative;
    margin-left: auto;
  }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    padding: 12px 0;
    flex-direction: column;
    gap: 0;
    display: none;
    min-width: 240px;
    z-index: 100;
  }
  .nav.open .nav-dropdown {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
  }
  .nav-dropdown .btn-header {
    margin: 12px 16px 0;
    width: calc(100% - 32px);
    text-align: center;
    padding: 12px 20px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav.open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .features-grid { grid-template-columns: 1fr; }
  .features-cards { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; gap: 20px; }
  .categories { padding: 50px 0; }
  .recommendation-card { flex: 0 0 100%; min-width: 100%; }
  .recommendations-slider-wrap { padding: 0 10px; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn svg { width: 20px; height: 20px; }
  .recommendations-section { padding: 50px 0; }
  .steps-section { padding: 50px 0; }
  .step-card { min-width: 0; }
  .cta-banner { padding: 2.5rem 0; }
  .cta-banner-inner { gap: 2rem; }
  .cta-banner-buttons { flex-direction: column; }
  .cta-banner-features { flex-direction: column; align-items: center; }
  .delivery-regions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 36px 0 24px; }
  .footer-top { padding: 20px 0; }
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-description { max-width: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 10px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
  .hero-badges { gap: 1rem; margin-top: 1.5rem; justify-content: flex-start; }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-stat span { font-size: 12px; }
  .btn-hero { padding: 14px 24px; font-size: 14px; width: 100%; text-align: center; }
  .contact-strip-inner { flex-direction: column; gap: 0.75rem; align-items: center; padding: 0.5rem 0; }
  .contact-strip { padding: 14px 0; }
  .features { padding: 36px 0; }
  .features-heading { font-size: 1.25rem; margin-bottom: 1.5rem; }
  .benefits-section { padding: 40px 0; }
  .benefits-header { margin-bottom: 2rem; }
  .benefits-title { font-size: 1.35rem; }
  .benefits-subtitle { font-size: 0.9rem; }
  .benefit-card { padding: 1.5rem; }
  .benefit-number { font-size: 1.75rem; top: 1rem; right: 1rem; }
  .categories { padding: 40px 0; }
  .categories-title { font-size: 1.35rem; }
  .section-title { font-size: 1.35rem; }
  .about-section { padding: 40px 0; }
  .about-content h2 { font-size: 1.4rem; }
  .about-lead { font-size: 0.95rem; }
  .delivery-section { padding: 40px 0; }
  .delivery-title { font-size: 1.35rem; }
  .map-section { height: 280px; }
  .cta-banner h3 { font-size: 1.35rem; }
  .cta-banner p { font-size: 0.95rem; }
  .btn-cta { padding: 14px 20px; font-size: 14px; width: 100%; justify-content: center; }
  .contact-form-box { padding: 1.5rem; }
  .contact-form-box h3 { font-size: 1.1rem; }
  .form-group input, .form-group textarea { font-size: 16px; padding: 12px 14px; }
  .scroll-top { bottom: max(16px, env(safe-area-inset-bottom)); right: max(16px, env(safe-area-inset-right)); width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-badges { flex-direction: column; gap: 0.75rem; }
  .hero-stat { text-align: left; display: flex; align-items: center; gap: 12px; }
  .hero-stat strong { margin-bottom: 0; font-size: 1.25rem; }
  .benefits-title { font-size: 1.2rem; }
  .categories-title { font-size: 1.2rem; }
  .section-title { font-size: 1.2rem; }
  .cta-banner h3 { font-size: 1.2rem; }
  .footer-phone { font-size: 1.1rem; }
  .btn-footer-cta { width: 100%; justify-content: center; padding: 14px 20px; }
}
