 :root {
      --bg: #f5f6f8;
      --surface: #ffffff;
      --surface-2: #eef1f4;
      --text: #2f343a;
      --muted: #67707a;
      --accent: #f08a24;
      --accent-dark: #d87410;
      --border: #e4e7eb;
      --shadow: 0 16px 40px rgba(18, 24, 32, 0.08);
      --radius: 20px;
      --container: 1240px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .topbar {
          background: #24282e;
          color: #fff;
          font-size: 14px;
        }


    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 10px 0;
      flex-wrap: wrap;
    }

    /* Убедитесь, что topbar-left и topbar-right не сжимаются */
    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }

    /* Поиск занимает оставшееся место */
    .search-wrapper {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .topbar a:hover { color: #ffd4a5; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(228,231,235,0.9);
    }

    .header-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      min-height: 84px;
    }

    .logo {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      white-space: nowrap;
    }

    .logo span { color: var(--accent); }

    .nav {
      display: flex;
      justify-content: center;
      gap: 4px;
      flex-wrap: wrap;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      transition: 0.2s ease;
    }

    .nav-link:hover {
      background: var(--surface-2);
      color: var(--accent-dark);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 250px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: 0.2s ease;
    }

    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 12px 14px;
      border-radius: 12px;
      color: var(--text);
      font-size: 15px;
    }

    .dropdown-menu a:hover {
      background: var(--surface-2);
      color: var(--accent-dark);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 12px 24px rgba(240,138,36,0.24);
    }

    .btn-primary:hover { background: var(--accent-dark); }

    .btn-secondary {
      background: #fff;
      color: var(--text);
      border-color: var(--border);
    }

    .btn-secondary:hover {
      background: var(--surface-2);
      border-color: #d6dbe1;
    }

    .hero {
      padding: 56px 0 36px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-main,
    .hero-card,
    .section-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .hero-main {
      padding: 56px 44px;
      background:
        radial-gradient(circle at top right, rgba(240,138,36,0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff4e8;
      color: var(--accent-dark);
      border: 1px solid #ffd7ac;
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0 0 18px;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.02;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      max-width: 760px;
    }

    .hero-text {
      margin: 0 0 28px;
      max-width: 700px;
      font-size: 18px;
      line-height: 1.7;
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .stat {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
    }

    .stat strong {
      display: block;
      font-size: 14px;
      line-height: 1.5;
    }

    .hero-card {
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .hero-card h2,
    .section-title {
      margin: 0;
      font-size: 28px;
      line-height: 1.2;
    }

    .hero-card p,
    .section-subtitle {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 16px;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 6px;
    }

    .contact-item {
      padding: 16px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .contact-label {
      display: block;
      margin-bottom: 6px;
      font-size: 13px;
      color: var(--muted);
    }

    .contact-value {
      font-size: 18px;
      font-weight: 700;
      word-break: break-word;
    }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid var(--border);
      font-weight: 700;
    }

    .socials a:hover {
      border-color: #f3c18a;
      color: var(--accent-dark);
      background: #fffaf5;
    }

    .section {
      padding: 12px 0 56px;
    }

    .section-card {
      padding: 34px;
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .catalog-item {
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    }

    .catalog-item strong {
      display: block;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .catalog-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .feature {
      padding: 20px;
      border-radius: 18px;
      background: var(--surface-2);
      border: 1px solid var(--border);
    }

    .feature strong {
      display: block;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .feature p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    footer {
      padding: 0 0 40px;
    }

    .footer-box {
      background: #24282e;
      color: #fff;
      border-radius: 24px;
      padding: 26px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-box small {
      color: rgba(255,255,255,0.72);
      display: block;
      margin-top: 6px;
      line-height: 1.6;
    }

    .mobile-menu-btn {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
      font-size: 20px;
      cursor: pointer;
    }

    @media (max-width: 1080px) {
      .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
      }

      .nav {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hero-grid,
      .catalog-grid,
      .features {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 720px) {
      .topbar-inner,
      .topbar-left,
      .topbar-right,
      .header-actions,
      .hero-actions,
      .footer-box {
        flex-direction: column;
        align-items: flex-start;
      }

      .header-inner {
        grid-template-columns: 1fr auto;
        min-height: 76px;
      }

      .logo {
        font-size: 24px;
      }

      .hero-main,
      .hero-card,
      .section-card {
        padding: 28px 20px;
        border-radius: 22px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .contact-value {
        font-size: 16px;
      }
    }


    /* Стили для иконок соцсетей */
.topbar i {
  margin-right: 8px;
  font-size: 14px;
}

.topbar-right a i {
  margin-right: 6px;
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Стили для SVG иконок соцсетей */
.social-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  transition: opacity 0.2s ease;
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar-right a:hover .social-icon {
  opacity: 0.8;
}

/* Адаптация для мобильных */
@media (max-width: 720px) {
  .social-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
}

/* Стили для SVG иконок соцсетей */
.social-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Адаптация для мобильных */
@media (max-width: 720px) {
  .topbar i {
    margin-right: 6px;
  }
}


/* Стили для адреса */
.topbar-left a i.fa-location-dot {
  margin-right: 6px;
}

.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Адаптация для мобильных */
@media (max-width: 720px) {
  .topbar-left a,
  .topbar-right a {
    font-size: 13px;
  }
  
  .topbar-left a i,
  .topbar-right a i {
    font-size: 12px;
  }
}


/* Стили для поиска */
.topbar-search {
  flex: 1;
  max-width: 300px;
  margin: 0 20px;
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 12px 0 0 12px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-input:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent);
}

.search-button {
  padding: 8px 14px;
  background: var(--accent);
  border: none;
  border-radius: 0 12px 12px 0;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-button:hover {
  background: var(--accent-dark);
}

.search-button i {
  font-size: 14px;
}

/* Адаптация для мобильных */
@media (max-width: 1080px) {
  .topbar-search {
    max-width: 250px;
    margin: 0 15px;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .topbar-search {
    order: 3;
    max-width: 100%;
    margin: 10px 0;
    width: 100%;
  }
  
  .topbar-left,
  .topbar-right {
    flex: 1;
  }
}

@media (max-width: 720px) {
  .topbar-search {
    order: 2;
    margin: 8px 0;
  }
  
  .topbar-left {
    order: 1;
  }
  
  .topbar-right {
    order: 3;
  }
  
  .search-input {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .search-button {
    padding: 6px 12px;
  }
}

/* Улучшенные стили для блоков */
.section-header {
  margin-bottom: 28px;
  text-align: center;
}

.section-header .section-title {
  margin-bottom: 12px;
}

.section-header .section-text {
  margin-bottom: 0;
  color: var(--muted);
}

/* Контактные строки с иконками */
.contact-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-row:hover {
  background: var(--surface-2);
  padding-left: 15px;
  border-radius: 12px;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff4e8, #ffe4cc);
  border-radius: 14px;
  color: var(--accent);
  font-size: 24px;
}

.contact-row__content {
  flex: 1;
}

.contact-row__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.contact-row__value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}

.contact-row__value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-row__value a:hover {
  color: var(--accent);
}

.phone-link,
.email-link {
  display: inline-block;
  margin: 4px 0;
}

/* Кнопки копирования */
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Улучшенная форма */
.contact-form {
  margin-top: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-label i {
  color: var(--accent);
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 138, 36, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Карта и кнопки */
.contacts-map {
  padding: 0 0 80px;
}

.map-container {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
}

.map-btn i {
  font-size: 14px;
}

/* Адаптация */
@media (max-width: 720px) {
  .contact-row {
    gap: 12px;
    padding: 16px 0;
  }
  
  .contact-row__icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .contact-row__value {
    font-size: 15px;
  }
  
  .copy-btn {
    width: 24px;
    height: 24px;
    margin-left: 6px;
  }
  
  .copy-btn i {
    font-size: 12px;
  }
  
  .map-actions {
    gap: 12px;
  }
  
  .map-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


/* ===== Hero Section ===== */
.hero {
  padding: 40px 0 20px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  background: #fff4e8;
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero__title {
  font-size: 48px;
  margin: 0 0 24px;
  line-height: 1.2;
}
.hero__title span {
  color: var(--accent);
}
.hero__text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 32px;
}
.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.hero__stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.hero__stat-text {
  font-size: 14px;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.hero__card-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.hero__card-item .label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.hero__card-item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin-right: 12px;
}
.hero__card-item .value:hover {
  color: var(--accent);
}
.hero__card-btn {
  width: 100%;
  text-align: center;
}

/* ===== About Section ===== */
.about {
  padding: 60px 0;
}
.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.section-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px;
  margin: 0 0 20px;
  line-height: 1.2;
}
.about__text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.about__feature i {
  color: var(--accent);
  font-size: 18px;
}
.about__img-placeholder {
  background: linear-gradient(135deg, #eef1f4, #e4e7eb);
  border-radius: 24px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
}
.about__img-placeholder i {
  font-size: 64px;
}

/* ===== Catalog Section ===== */
.catalog {
  padding: 20px 0 60px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.catalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
  transition: all 0.3s;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.catalog-card__icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}
.catalog-card__title {
  font-size: 20px;
  margin: 0 0 12px;
}
.catalog-card__text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.catalog-card__price {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.catalog-card__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* ===== Benefits Section ===== */
.benefits {
  background: var(--surface-2);
  padding: 60px 0;
  margin: 40px 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.benefit {
  text-align: center;
}
.benefit__icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--accent);
  box-shadow: var(--shadow);
}
.benefit__title {
  font-size: 18px;
  margin-bottom: 12px;
}
.benefit__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== Services ===== */
.services {
  padding: 20px 0 60px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.service-card__icon {
  font-size: 48px;
  color: var(--accent);
}
.service-card__content h3 {
  margin: 0 0 8px;
}
.service-card__content p {
  color: var(--muted);
  margin: 0;
}
.service-card__link {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
}

/* ===== Reviews ===== */
.reviews {
  padding: 60px 0;
  background: var(--surface-2);
}
.reviews__slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.review-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.review-card__text i {
  color: var(--accent);
  margin-right: 8px;
  opacity: 0.5;
}
.review-card__author strong {
  display: block;
  font-size: 16px;
}
.review-card__author span {
  font-size: 13px;
  color: var(--muted);
}

/* ===== CTA Section ===== */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1f25 0%, #2a2f35 100%);
  color: #fff;
}
.cta__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.cta__title {
  font-size: 32px;
  margin: 0 0 12px;
}
.cta__text {
  opacity: 0.8;
  margin: 0;
}
.cta__form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-form__input {
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  width: 250px;
  font-size: 15px;
}
.cta-form__btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-form__btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero__grid,
  .about__wrapper,
  .catalog__grid,
  .benefits__grid,
  .reviews__slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__title {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .cta__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .cta__form {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero__grid,
  .about__wrapper,
  .catalog__grid,
  .benefits__grid,
  .reviews__slider {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    justify-content: space-between;
  }
  .hero__title {
    font-size: 28px;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  .cta-form__input {
    width: 100%;
  }
}


