/* ===== VARIABLES ===== */
:root {
  --dark: #0f1923;
  --dark-secondary: #1b2a3a;
  --dark-card: #162231;
  --orange: #C8944A;
  --orange-hover: #D4A55A;
  --orange-light: rgba(200, 148, 74, 0.12);
  --yellow: #f5a623;
  --green: #27ae60;
  --white: #ffffff;
  --gray-100: #f4f6f8;
  --gray-200: #e2e6ea;
  --gray-300: #c4cad0;
  --gray-400: #8a9199;
  --gray-500: #5c6370;
  --text-dark: #0f1923;
  --text-body: #2d3748;
  --text-muted: #6b7a8d;
  --text-light: #c8d6e5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: .25s ease;
  --max-width: 1280px;
  --header-height: 56px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-body);
  background: var(--gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; border: none; outline: none; background: none;
}
button { cursor: pointer; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: var(--text-light);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__left { display: flex; align-items: center; gap: 16px; }
.top-bar__right { display: flex; align-items: center; gap: 12px; }
.top-bar a:hover { color: var(--orange); }
.top-bar__schedule { opacity: .8; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav .nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav .nav-list li { margin: 0; padding: 0; }
.nav a, .nav .nav-list a {
  padding: 8px 12px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active, .nav .current-menu-item > a, .nav .current-menu-ancestor > a {
  background: var(--orange-light);
  color: var(--orange);
}

/* Dropdown */
.nav .nav-list .menu-item-has-children { position: relative; }
.nav .nav-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 220px;
  z-index: 200;
  list-style: none;
  margin: 0;
}
.nav .nav-list .menu-item-has-children:hover > .sub-menu { display: block; }
.nav .nav-list .sub-menu li { margin: 0; padding: 0; }
.nav .nav-list .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
  border-radius: 0;
  background: none;
}
.nav .nav-list .sub-menu a:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.header-phone__number {
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  white-space: nowrap;
  line-height: 1;
}
.header-phone__number:hover { color: var(--orange); }

.btn-callback {
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 12px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-callback:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%23e8710a" stop-opacity="0.06"/><stop offset="100%" stop-color="%23e8710a" stop-opacity="0"/></linearGradient></defs><circle cx="400" cy="300" r="280" fill="url(%23g)"/></svg>') center/cover no-repeat;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,113,10,.15);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero__subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,113,10,.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(232,113,10,.1);
}

/* Hero stats */
.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
}
.hero__stat-label {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ===== DIRECTIONS (3 columns) ===== */
.directions {
  padding: 80px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.direction-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.direction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.direction-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.direction-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.direction-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}
.direction-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}
.direction-card__link:hover { gap: 10px; }

/* ===== POPULAR PRODUCTS ===== */
.popular {
  padding: 80px 0;
}
.popular__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.popular__header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
}
.popular__header a {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}
.popular__header a:hover { text-decoration: underline; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card__img {
  width: 100%;
  height: 180px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 40px;
  position: relative;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-card__body {
  padding: 16px 18px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.product-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__props {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
}
.product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}
.product-card__price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}
.product-card__btn {
  background: var(--orange);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.product-card__btn:hover { background: var(--orange-hover); }

/* ===== ADVANTAGES ===== */
.advantages {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage {
  text-align: center;
  padding: 28px 16px;
}
.advantage__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.advantage h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.advantage p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}
.cta-block {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-block h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-block p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
}
.cta-block__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cta-phone {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
}
.cta-phone:hover { color: var(--orange); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .logo img {
  height: 50px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.7;
}
.footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--gray-400);
}
.footer ul a:hover { color: var(--orange); }
.footer__contacts p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.footer__contacts a { color: var(--gray-300); }
.footer__contacts a:hover { color: var(--orange); }
.footer__card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer__card-link:hover { color: var(--orange); }
.footer__messengers {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__messengers a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition);
}
.footer__messengers a:hover { background: var(--orange); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
}
.footer__bottom a { color: var(--gray-400); }
.footer__bottom a:hover { color: var(--orange); }

/* ===== CATALOG PAGE ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin: 0 6px; opacity: .5; }

.page-header {
  padding: 24px 0 32px;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.page-header p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Subcategories chips */
.subcategories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.subcategory-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
}
.subcategory-chip:hover, .subcategory-chip.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Catalog layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding-bottom: 60px;
}

/* Sidebar filters */
.filters {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 16px);
}
.filters h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.filter-group {
  margin-bottom: 24px;
}
.filter-group__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
}
.filter-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}
.filter-range {
  display: flex;
  gap: 8px;
  align-items: center;
}
.filter-range input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
}
.filter-range input:focus { border-color: var(--orange); }
.filter-range span { color: var(--text-muted); font-size: 13px; }

.btn-filter {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}
.btn-filter:hover { background: var(--orange-hover); }
.btn-reset {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
}
.btn-reset:hover { color: var(--orange); }

/* Catalog toolbar */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.catalog-toolbar__count {
  font-size: 14px;
  color: var(--text-muted);
}
.catalog-toolbar__sort select {
  padding: 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  padding: 0 0 60px;
}
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.product-gallery {
  background: var(--gray-100);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gray-300);
}
.product-info h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-info__category {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-info__avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}
.product-price-block {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.product-price-block__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.product-price-block__row:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}
.product-price-block__label {
  font-size: 14px;
  color: var(--text-muted);
}
.product-price-block__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}
.product-price-block__value small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.product-actions .btn-primary { flex: 1; text-align: center; }
.product-actions .btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}
.product-actions .btn-whatsapp:hover { background: #1fb855; }
.product-specs { margin-top: 16px; }
.product-specs dt {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.product-specs dd {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 12px;
}

/* ===== DELIVERY PAGE ===== */
.delivery-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
  color: var(--white);
  padding: 60px 0;
}
.delivery-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
.delivery-hero p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
}

.vehicles-section { padding: 60px 0; }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.vehicle-card__img {
  height: 200px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--gray-400);
}
.vehicle-card__body { padding: 20px; }
.vehicle-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.vehicle-card__specs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.vehicle-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vehicle-card__price strong {
  font-size: 20px;
  color: var(--dark);
}
.vehicle-card__price small {
  font-size: 13px;
  color: var(--text-muted);
}

/* Delivery zones */
.zones {
  padding: 60px 0;
  background: var(--white);
}
.zones-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.zones-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.zones-table th:first-child { border-radius: var(--radius) 0 0 0; }
.zones-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.zones-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.zones-table tr:hover td { background: var(--orange-light); }
.zones-table td:last-child { font-weight: 700; color: var(--dark); }

/* ===== RENTAL PAGE ===== */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rental-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rental-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.rental-card__img {
  height: 200px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--gray-400);
  overflow: hidden;
  position: relative;
}
.rental-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rental-card__body { padding: 20px; }
.rental-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.rental-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.rental-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.rental-card__feature {
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
}
.rental-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.rental-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}
.rental-card__price small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.rental-card__btn {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}
.rental-card__btn:hover { background: var(--orange-hover); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
  color: var(--white);
  padding: 60px 0;
}
.about-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.about-hero p { color: var(--text-light); font-size: 17px; max-width: 600px; }

.about-content {
  padding: 60px 0;
}
.about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.7;
}
.about-img {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gray-400);
}

.stats-section {
  padding: 60px 0;
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item__value {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
}
.stat-item__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== ABOUT PAGE ===== */
.about-section { padding: 0 0 60px; }
.about-text h2 { font-size: 26px; margin-bottom: 16px; }
.about-text p { font-size: 16px; line-height: 1.75; color: var(--text-body); margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.about-value__icon { font-size: 32px; flex-shrink: 0; width: 48px; text-align: center; }
.about-value h4 { margin-bottom: 4px; font-size: 17px; }
.about-value p { margin: 0; font-size: 15px; color: var(--text-muted); }
.about-stats-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.about-stat { text-align: center; }
.about-stat__value { display: block; font-size: 36px; font-weight: 800; color: var(--orange); }
.about-stat__label { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ===== FLEET PAGE ===== */
.fleet-summary { padding: 0 0 48px; }
.fleet-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.fleet-stat {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 32px;
  min-width: 140px;
}
.fleet-stat__value { display: block; font-size: 36px; font-weight: 800; color: var(--orange); }
.fleet-stat__label { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.fleet-list { padding: 0 0 60px; }
.fleet-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.fleet-item--reverse { direction: rtl; }
.fleet-item--reverse > * { direction: ltr; }
.fleet-item__image {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.fleet-item__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fleet-item__image:hover img { transform: scale(1.05); }
.fleet-item__zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity var(--transition);
}
.fleet-item__image:hover .fleet-item__zoom { opacity: 1; }
.fleet-item__count {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.fleet-item__info h2 { font-size: 24px; margin-bottom: 12px; }
.fleet-item__info p { font-size: 16px; line-height: 1.6; color: var(--text-body); margin-bottom: 20px; }

/* ===== CERTIFICATES PAGE ===== */
.certificates-section { padding: 0 0 60px; }
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.certificate-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.certificate-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.certificate-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.certificate-card__zoom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.certificate-card:hover .certificate-card__zoom { opacity: 1; }
.certificate-card--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  min-height: 280px;
  cursor: default;
}
.certificate-card--placeholder:hover { transform: none; box-shadow: none; }
.certificate-card__skeleton { margin-bottom: 12px; }
.certificate-card--placeholder span { font-size: 14px; color: var(--text-muted); }
.certificates-placeholder__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.certificates-placeholder__text {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.3); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ===== PRIVACY PAGE ===== */
.privacy-content {
  padding: 40px 0 80px;
}
.privacy-content .container {
  max-width: 800px;
}
.privacy-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}
.privacy-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-btn svg { width: 26px; height: 26px; }
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}
.floating-btn--whatsapp { background: #25d366; }
.floating-btn--telegram { background: #0088cc; }
.floating-btn--max { background: #8B5CF6; }
.floating-btn--phone { background: var(--orange); }

/* ===== CALLBACK MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 90%;
  max-width: 440px;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal__close {
  float: right;
  font-size: 20px;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.modal__close:hover { color: var(--dark); }
.modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.modal p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: var(--white);
  z-index: 99;
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-menu .mobile-nav-list li { margin: 0; padding: 0; }
.mobile-menu a, .mobile-menu .mobile-nav-list a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-nav-list .menu-item-has-children > a { position: relative; }
.mobile-menu .mobile-nav-list .menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition);
}
.mobile-menu .mobile-nav-list .menu-item-has-children.open > a::after {
  transform: translateY(-30%) rotate(-135deg);
}
.mobile-menu .mobile-nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu .mobile-nav-list .menu-item-has-children.open > .sub-menu {
  max-height: 300px;
}
.mobile-menu .mobile-nav-list .sub-menu a {
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu .mobile-nav-list .sub-menu a:hover { color: var(--orange); }
.mobile-menu__phone {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
}
.mobile-menu__actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

/* ===== CONTACTS PAGE ===== */
.contacts-section { padding: 0 0 60px; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contacts-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-lg); }
.contact-card__icon { font-size: 28px; margin-bottom: 8px; }
.contact-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.contact-card__value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
a.contact-card__value:hover { color: var(--orange); }
.contact-card__sub { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.contact-card__messengers { display: flex; gap: 10px; flex-wrap: wrap; }
.messenger-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: opacity var(--transition);
}
.messenger-btn:hover { opacity: 0.85; color: #fff; }
.messenger-btn--wa { background: #25D366; }
.messenger-btn--tg { background: #0088cc; }
.messenger-btn--max { background: #8B5CF6; }

.contacts-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}
.contacts-form-wrap h3 { margin-bottom: 4px; font-size: 22px; }
.contacts-form-wrap > p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.contacts-form { display: flex; flex-direction: column; gap: 14px; }
.contacts-form input,
.contacts-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
}
.contacts-form input:focus,
.contacts-form textarea:focus { border-color: var(--orange); outline: none; }
.contacts-form textarea { resize: vertical; }

/* Map */
.contacts-map { padding: 0 0 60px; }
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.map-header h2 { margin-bottom: 0; }
.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-route:hover { background: var(--orange-dark); color: #fff; }
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Requisites */
.requisites-section { padding: 0 0 60px; }
.requisites-section h2 { margin-bottom: 24px; }
.requisites-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
.requisites-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  overflow-x: auto;
}
.requisites-table { width: 100%; border-collapse: collapse; }
.requisites-table th,
.requisites-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
}
.requisites-table th {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  width: 200px;
}
.requisites-table td { color: var(--dark); font-weight: 500; }
.requisites-table tr:last-child th,
.requisites-table tr:last-child td { border-bottom: none; }

.requisites-download {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}
.requisites-download__icon { font-size: 48px; margin-bottom: 16px; }
.requisites-download h3 { color: #fff; margin-bottom: 8px; font-size: 20px; }
.requisites-download p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 15px; line-height: 1.5; }
.requisites-download .btn-primary { width: 100%; justify-content: center; }

/* ===== DELIVERY & VYVOZ PAGES ===== */
.delivery-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a365d 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.delivery-hero h1 { color: #fff; font-size: 36px; margin-bottom: 16px; max-width: 700px; }
.delivery-hero p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.6; max-width: 640px; margin-bottom: 28px; }
.delivery-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Delivery services */
.delivery-services { padding: 64px 0; }
.delivery-services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.delivery-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition);
}
.delivery-service-card:hover { box-shadow: var(--shadow-lg); }
.delivery-service-card__icon { font-size: 40px; margin-bottom: 16px; display: block; }
.delivery-service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--dark); }
.delivery-service-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.delivery-service-card ul { list-style: none; padding: 0; margin: 0; }
.delivery-service-card ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-body);
  font-size: 14px;
}
.delivery-service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* Child page cards */
.delivery-children { padding: 64px 0; background: var(--bg-light); }
.delivery-children__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.delivery-child-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  transition: all var(--transition);
}
.delivery-child-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.delivery-child-card__icon { font-size: 40px; margin-bottom: 16px; }
.delivery-child-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.delivery-child-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; flex: 1; }
.delivery-child-card__link {
  margin-top: 16px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}

/* Steps */
.delivery-steps { padding: 64px 0; }
.delivery-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.delivery-step {
  text-align: center;
  padding: 24px 16px;
}
.delivery-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}
.delivery-step h4 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.delivery-step p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* Fleet mini cards */
.delivery-fleet { padding: 64px 0; background: var(--bg-light); }
.delivery-fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.delivery-fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.delivery-fleet-card__count {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.delivery-fleet-card h4 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.delivery-fleet-card p { color: var(--text-muted); font-size: 14px; }

/* Vyvoz features */
.vyvoz-features { padding: 64px 0; }
.vyvoz-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.vyvoz-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.vyvoz-feature:hover { box-shadow: var(--shadow-lg); }
.vyvoz-feature__icon { font-size: 36px; margin-bottom: 12px; display: block; }
.vyvoz-feature h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.vyvoz-feature p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* Vyvoz prices table */
.vyvoz-prices { padding: 64px 0; background: var(--bg-light); }
.vyvoz-prices__table { max-width: 700px; margin: 32px auto 0; }
.vyvoz-prices__table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vyvoz-prices__table th,
.vyvoz-prices__table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.vyvoz-prices__table thead th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}
.vyvoz-prices__table td:last-child { text-align: right; white-space: nowrap; }
.vyvoz-prices__table tr:last-child td { border-bottom: none; }
.vyvoz-prices__table tr:hover td { background: var(--orange-light); }

/* Vyvoz types */
.vyvoz-types { padding: 64px 0; }
.vyvoz-types__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.vyvoz-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.vyvoz-type-card h4 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.vyvoz-type-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ===== PRICES PAGE ===== */
.prices-section { padding: 0 0 64px; }

.prices-nav {
  display: flex;
  gap: 8px;
  padding: 16px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.prices-nav__link {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-light);
  transition: all var(--transition);
  text-decoration: none;
}
.prices-nav__link:hover,
.prices-nav__link.active {
  background: var(--orange);
  color: #fff;
}

.prices-block { margin-bottom: 56px; }
.prices-block h2 { font-size: 24px; margin-bottom: 6px; }
.prices-block__subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.prices-table-wrap { overflow-x: auto; }
.prices-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prices-table th,
.prices-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.prices-table thead th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.prices-table__price {
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  font-size: 15px;
}
.prices-table__note { color: var(--text-muted); font-size: 13px; }
.prices-table tr:last-child td { border-bottom: none; }
.prices-table tbody tr:hover td { background: var(--orange-light); }

.prices-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.prices-note p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin: 0; }

/* ===== REGIONAL PAGES ===== */
.region-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%); color: #fff; padding: 56px 0 64px; text-align: center; }
.region-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.region-hero p { font-size: 17px; color: var(--text-light); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.region-hero__badge { display: inline-block; background: rgba(200,148,74,.15); color: var(--orange); padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }

.region-cities { padding: 64px 0; }
.region-cities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.region-city-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column; gap: 8px;
}
.region-city-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.region-city-card__icon { font-size: 28px; margin-bottom: 4px; }
.region-city-card__name { font-size: 22px; font-weight: 700; color: var(--text-dark); }
.region-city-card__district { font-size: 14px; color: var(--text-muted); }
.region-city-card__distance { font-size: 13px; color: var(--orange); font-weight: 600; }
.region-city-card__services { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; font-size: 13px; color: var(--text-body); }
.region-city-card__link { margin-top: auto; padding-top: 12px; color: var(--orange); font-weight: 600; font-size: 14px; }

.region-services-overview { padding: 64px 0; background: var(--white); }
.region-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }

.region-service-block {
  background: var(--gray-100); border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.region-service-block__icon { font-size: 32px; }
.region-service-block h3 { font-size: 20px; font-weight: 700; }
.region-service-block ul { list-style: disc; padding-left: 20px; color: var(--text-body); font-size: 15px; line-height: 1.8; }
.region-service-block .btn-outline { margin-top: auto; align-self: flex-start; }

.region-service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px; text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.region-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.region-service-card__icon { font-size: 40px; }
.region-service-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.region-service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.region-service-card__link { margin-top: auto; color: var(--orange); font-weight: 600; font-size: 14px; padding-top: 8px; }

.region-about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.region-about-text h3 { font-size: 18px; font-weight: 700; margin: 20px 0 10px; }
.region-about-text ul { list-style: disc; padding-left: 20px; line-height: 1.8; }
.region-about-text p { line-height: 1.7; color: var(--text-body); }
.region-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat-card__value { font-size: 28px; font-weight: 800; color: var(--orange); }
.stat-card__label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.region-city-about { padding: 64px 0; }
.region-city-services { padding: 64px 0; }
.region-map { padding: 0 0 64px; }
.region-content { padding: 64px 0; }

/* Region service sub-pages */
.region-materials-grid, .region-equipment-grid { display: flex; flex-direction: column; gap: 48px; }
.region-material-category h2, .region-equipment-category h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.region-material-category > p { color: var(--text-muted); margin-bottom: 16px; }
.region-materials-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.region-material-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); padding: 14px 20px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.region-material-item:hover { box-shadow: var(--shadow-md); }
.region-material-item__name { font-weight: 600; color: var(--text-dark); }
.region-material-item__price { color: var(--orange); font-weight: 700; font-size: 15px; }

.region-delivery-services { display: flex; flex-direction: column; gap: 32px; }
.region-delivery-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.region-delivery-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.region-delivery-card p { color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.region-delivery-card ul { list-style: disc; padding-left: 20px; line-height: 1.8; margin-bottom: 16px; }

.region-equipment-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 16px 0; }
.region-equipment-item {
  background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.region-equipment-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.region-equipment-item img { width: 100%; height: 160px; object-fit: cover; }
.region-equipment-item__info { padding: 12px 16px; }
.region-equipment-item__name { display: block; font-weight: 600; font-size: 14px; color: var(--text-dark); }
.region-equipment-item__price { display: block; color: var(--orange); font-weight: 700; font-size: 14px; margin-top: 4px; }

.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ===== MOBILE CONTACT BUTTON ===== */
.mobile-contact-btn { display: none; position: relative; }
.mobile-contact-btn__trigger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  transition: background var(--transition);
}
.mobile-contact-btn__trigger:hover { background: var(--orange-hover); }
.mobile-contact-btn__trigger svg { width: 20px; height: 20px; }
.mobile-contact-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 10px;
  gap: 6px;
  z-index: 1000;
  flex-direction: row;
  align-items: center;
}
.mobile-contact-popup.open { display: flex; }
.mobile-contact-popup__item {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.mobile-contact-popup__item:hover { background: var(--orange-light); color: var(--orange); }
.mobile-contact-popup__item svg { width: 20px; height: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; order: -1; }
  .header-phone { display: none; }
  .mobile-contact-btn { display: block; }
  .logo img { height: 40px; }

  .hero h1 { font-size: 32px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }

  .directions__grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-grid { grid-template-columns: repeat(2, 1fr); }

  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }

  .product-main { grid-template-columns: 1fr; }

  .cta-block { flex-direction: column; text-align: center; padding: 36px; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .about-content__grid { grid-template-columns: 1fr; }
  .about-stats-card { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .fleet-item { grid-template-columns: 1fr; }
  .fleet-item--reverse { direction: ltr; }
  .certificates-grid { grid-template-columns: repeat(3, 1fr); }
  .certificates-placeholder__grid { grid-template-columns: repeat(3, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-cards { grid-template-columns: 1fr 1fr; }
  .requisites-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .delivery-services__grid { grid-template-columns: 1fr; }
  .delivery-children__grid { grid-template-columns: 1fr; }
  .delivery-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-fleet__grid { grid-template-columns: 1fr; }
  .vyvoz-features__grid { grid-template-columns: repeat(2, 1fr); }
  .vyvoz-types__grid { grid-template-columns: 1fr; }

  .region-cities__grid { grid-template-columns: repeat(2, 1fr); }
  .region-services__grid { grid-template-columns: 1fr; }
  .region-about-grid { grid-template-columns: 1fr; }
  .region-equipment-list { grid-template-columns: repeat(2, 1fr); }
  .region-hero h1 { font-size: 30px; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 26px; }
  .hero__subtitle { font-size: 15px; }
  .hero__stats { gap: 16px; }
  .hero__stat-value { font-size: 24px; }

  .section-header h2 { font-size: 24px; }

  .products-grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .rental-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .contacts-cards { grid-template-columns: 1fr; }
  .requisites-table th { width: auto; }
  .certificates-grid { grid-template-columns: repeat(2, 1fr); }
  .certificates-placeholder__grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-item__image img { height: 260px; }
  .fleet-stats { gap: 16px; }
  .fleet-stat { min-width: 100px; padding: 16px 20px; }
  .fleet-stat__value { font-size: 28px; }

  .top-bar { display: none; }

  .region-cities__grid { grid-template-columns: 1fr; }
  .region-equipment-list { grid-template-columns: 1fr; }
  .region-hero h1 { font-size: 24px; }
  .region-about-stats { grid-template-columns: 1fr 1fr; }

  .delivery-hero h1 { font-size: 26px; }
  .delivery-hero p { font-size: 15px; }
  .delivery-steps__grid { grid-template-columns: 1fr; }
  .delivery-fleet__grid { grid-template-columns: 1fr; }
  .vyvoz-features__grid { grid-template-columns: 1fr; }
  .vyvoz-prices__table th,
  .vyvoz-prices__table td { padding: 12px 16px; font-size: 14px; }
  .prices-table th,
  .prices-table td { padding: 10px 12px; font-size: 13px; }
  .prices-table__note { display: none; }
  .prices-nav { gap: 6px; }
  .prices-nav__link { padding: 6px 14px; font-size: 13px; }

  .product-gallery { height: 260px; }

  .floating-buttons { bottom: 16px; right: 16px; }
  .floating-btn { width: 48px; height: 48px; }
  .floating-btn svg { width: 22px; height: 22px; }
}
