/* ===== СБРОС & ПЕРЕМЕННЫЕ ===== */
*,
:before,
:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --color-brand: #2a7faa;
  --color-brand-light: #3a95c4;
  --color-brand-dark: #1e5a7d;
  --color-brand-darker: #0b2436;
  --color-text: #374151;
  --color-text-light: #6b7280;
  --color-text-dark: #1f2937;
  --color-text-white: #fff;
  --color-text-white-muted: rgba(255, 255, 255, 0.85);
  --color-text-white-dim: rgba(255, 255, 255, 0.7);
  --color-bg: #fff;
  --color-bg-alt: #f9fafb;
  --color-bg-hero: var(--color-brand-darker);
  --color-bg-footer: var(--color-brand-darker);
  --color-card-bg: #fff;
  --color-card-border: #e5e7eb;
  --color-card-shadow: rgba(0, 0, 0, 0.1);
  --color-card-hover-border: var(--color-brand);
  --color-error: #ef4444;
  --color-border: #e5e7eb;
  --color-border-light: rgba(255, 255, 255, 0.15);
  --color-border-footer: #334155;
  --color-icon-bg: #f1f5f9;
  --color-icon: var(--color-brand);
  --color-accent-light: #93c5fd;
  --color-overlay-dark: rgba(0, 0, 0, 0.5);
  --color-overlay-blur: blur(6px);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  -webkit-font-smoothing: antialiased;
}
.container {
  margin: 0 auto;
  padding: 0 5rem;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  list-style: none;
}
input,
select,
textarea {
  font: inherit;
}

/* ===== УТИЛИТЫ ===== */
.text--accent {
  color: var(--color-brand);
}
.hidden {
  display: none !important;
}
.required {
  color: var(--color-error);
}
.error-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--color-error);
  height: 1.2rem;
  margin-top: 0.25rem;
}

/* ===== КНОПКИ ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-brand);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--outline:hover {
  border-color: var(--color-brand);
  background: rgba(42, 127, 170, 0.1);
  transform: translateY(-1px);
}
.btn--dark {
  background: #0f172a;
  color: #fff;
}
.btn--dark:hover {
  background: var(--color-brand);
}
.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.btn--full {
  width: 100%;
}

/* ===== ХЭДЕР ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--color-brand-darker);
  color: var(--color-text-white);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  display: block;
}
.header-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.header-top__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
}
.header-top .myicon {
  font-size: 0.85em;
}
.header-top__hours {
  color: var(--color-accent-light);
  font-weight: 500;
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo__icon {
  width: 2rem;
  height: 2rem;
  background: var(--color-brand-dark);
  color: var(--color-text-white);
  border-radius: 0.4rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.logo__text {
  font-size: 1.25rem;
  font-weight: 700;
}
.nav__list {
  display: flex;
  gap: 1.5rem;
}
.nav__link {
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-brand);
}
.nav__link.active:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__phone-number {
  font-weight: 700;
  font-size: 1rem;
}
.header__phone-note {
  font-size: 0.7rem;
  color: var(--color-brand);
}
.burger {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  align-items: center;
  font-size: 1.3rem;
}
.burger:hover {
  background: #f1f5f9;
}
.mobile-menu {
  display: none;
}

/* ===== HERO ===== */
.hero {
  padding-top: 7rem;
  padding-bottom: 0;
  background: var(--color-bg-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero__carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero__carousel-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay-dark);
  backdrop-filter: var(--color-overlay-blur);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__text h1 {
  font-size: clamp(2.5rem, 7.5vw, 4.375rem);
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__desc {
  color: var(--color-text-white-muted);
  font-size: 1.3rem;
  max-width: 42rem;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--color-border-light);
}
.stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-white);
}
.stat__label {
  font-size: 1rem;
  color: var(--color-text-white-dim);
}
.hero__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__image {
  display: block;
}
.floating {
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}
.hero__carousel-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border-light);
  flex-shrink: 0;
}
.hero__carousel-btn:hover {
  background: rgba(42, 127, 170, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero__carousel-btn .myicon {
  font-size: 24px;
  color: var(--color-text-white);
}
.hero__carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.hero__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero__carousel-dot.active {
  background: var(--color-brand);
  width: 24px;
  border-radius: 5px;
}
.hero__carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== СЕКЦИИ ===== */
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section__subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--color-card-hover-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 3rem;
  height: 3rem;
  background: var(--color-icon-bg);
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-icon);
  font-size: 1.5rem;
}
.feature-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== КАТАЛОГ ===== */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
}
.product-card--hit {
  position: relative;
}
.product-card--hit:before {
  content: "🔥 Хит";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-brand);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}
.product-card__image {
  position: relative;
  height: 13rem;
  overflow: hidden;
  background: var(--color-icon-bg);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}
.product-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-card__header h3 {
  font-weight: 700;
  font-size: 1.15rem;
}
.price__label {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-transform: uppercase;
}
.price__value {
  font-weight: 800;
  font-size: 1.3rem;
}
.price__value small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
}
.price__value--accent {
  color: var(--color-brand);
}
.product-card__specs {
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product-card__specs .myicon {
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  color: var(--color-text-light);
}
.catalog__footer {
  text-align: center;
  margin-top: 2.5rem;
}
.catalog__footer p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* ===== ДОСТАВКА ===== */
.delivery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.delivery-card__text {
  padding: 2.5rem;
  background: var(--color-brand-darker);
  color: var(--color-text-white);
}
.delivery-card__text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.delivery-card__text > p {
  color: #bfdbfe;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.delivery-steps {
  margin-bottom: 1.25rem;
}
.delivery-steps li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  align-items: baseline;
}
.step-num {
  width: 1.6rem;
  height: 1.6rem;
  background: var(--color-brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.delivery-price {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}
.delivery-price .price__label {
  color: #93c5fd;
}
.delivery-price .price__value {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.25rem 0;
  display: block;
}
.delivery-price .price__note {
  font-size: 0.75rem;
  color: #93c5fd;
}
.delivery-card__image {
  min-height: 14rem;
  background: #e2e8f0;
  overflow: hidden;
}
.delivery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.delivery-card:hover .delivery-card__image img {
  transform: scale(1.03);
}

/* ===== КОНТАКТЫ + ФОРМА ===== */
.contacts-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contacts-info {
  padding: 2rem;
  background: var(--color-brand-darker);
  color: var(--color-text-white);
}
.contacts-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-item__icon {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item__label {
  display: block;
  font-size: 0.7rem;
  color: #93c5fd;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}
.contacts-info a {
  font-weight: 600;
  transition: color 0.2s;
}
.contacts-info a:hover {
  color: #93c5fd;
}
.work-hours-small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-wrapper {
  padding: 2rem;
}
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.form-desc {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 0.75rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  transition: var(--transition);
}
.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(42, 127, 170, 0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.form-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.5rem;
}
.highlight-form {
  animation: highlight 1s ease;
}
@keyframes highlight {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--color-brand);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(42, 127, 170, 0.15);
  }
}
.confirm-step {
  text-align: center;
  animation: fadeIn 0.3s ease;
}
.confirm-data {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
  text-align: left;
}
.confirm-data div {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.confirm-data strong {
  min-width: 5rem;
  color: var(--color-text-light);
  flex-shrink: 0;
}
.form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.thankyou {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.3s ease;
}
.thankyou__icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}
.thankyou__icon .myicon {
  font-size: 2rem;
  color: #16a34a;
}
.thankyou h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.thankyou p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-footer);
  color: #94a3b8;
  padding: 3rem 0 1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.logo--footer {
  margin-bottom: 0.75rem;
}
.logo--footer .logo__icon {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.75rem;
}
.footer h4 {
  color: #f8fafc;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer__links li {
  margin-bottom: 0.4rem;
}
.footer__links a:hover {
  color: var(--color-text-white);
  text-decoration: underline;
  text-decoration-color: var(--color-brand);
}
.footer__bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-footer);
  font-size: 0.75rem;
  margin-top: 1.5rem;
}

/* ===== ДОСТУПНОСТЬ ===== */
:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  :before,
  :after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== МЕДИАЗАПРОСЫ ===== */
@media (max-width: 1250px) {
  .container {
    padding: 0 2rem;
  }
  .header__phone-number {
    font-size: 0.9rem;
  }
  .nav__list {
    gap: 1rem;
  }
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero__content {
    gap: 2rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section__subtitle {
    margin-bottom: 1.8rem;
    font-size: 1rem;
  }
  .features__grid {
    gap: 1rem;
  }
  .feature-card {
    display: block;
    padding: 1.2rem;
  }
  .catalog__grid {
    gap: 1rem;
  }
  .product-card__image {
    height: 12rem;
  }
  .catalog__footer {
    margin-top: 2rem;
  }
  .delivery-card__text {
    padding: 1.5rem;
  }
  .contacts-info,
  .form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    white-space: normal;
  }
  .btn--lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .btn--sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  .logo__text {
    font-size: 1rem;
  }
  .logo__icon {
    width: 1.8rem;
    height: 1.8rem;
  }
  .header-top {
    display: none;
  }
  .nav__list,
  .header__actions {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.active {
    display: block;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .mobile-menu__link {
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
  }
  .mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    color: var(--color-brand);
    font-weight: 700;
  }
  .hero {
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: auto;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero__text h1 {
    margin-bottom: 0.75rem;
  }
  .hero__desc {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  .hero__buttons .btn {
    width: 100%;
  }
  .hero__stats {
    gap: 0.8rem;
    padding-top: 1rem;
  }
  .stat__value {
    font-size: 1.3rem;
  }
  .stat__label {
    font-size: 0.7rem;
  }
  .hero__image-wrapper {
    display: none;
  }
  .hero__carousel-dots {
    bottom: 10px;
    gap: 8px;
  }
  .hero__carousel-dot {
    width: 6px;
    height: 6px;
  }
  .hero__carousel-dot.active {
    width: 18px;
  }
  .hero__carousel-btn {
    width: 36px;
    height: 36px;
  }
  .hero__carousel-btn .myicon {
    font-size: 18px;
  }
  .section {
    padding: 2rem 0;
  }
  .section__title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .section__subtitle {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .feature-card {
    display: block;
    padding: 1rem;
    text-align: center;
  }
  .feature-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
  }
  .feature-card__icon .myicon {
    font-size: 1.2rem;
  }
  .feature-card h3 {
    font-size: 1rem;
  }
  .feature-card p {
    font-size: 0.85rem;
  }
  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-card__image {
    height: 10rem;
  }
  .product-card__content {
    padding: 1rem;
  }
  .product-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-card__header h3 {
    font-size: 1rem;
  }
  .price__value {
    font-size: 1.1rem;
  }
  .product-card__specs {
    font-size: 0.8rem;
    margin: 0.5rem 0;
  }
  .catalog__footer {
    margin-top: 1.5rem;
  }
  .catalog__footer p {
    font-size: 0.9rem;
  }
  .catalog__footer .btn {
    white-space: normal;
  }
  .delivery-card {
    grid-template-columns: 1fr;
  }
  .delivery-card__text {
    padding: 1.2rem;
  }
  .delivery-card__text h2 {
    font-size: 1.3rem;
  }
  .delivery-card__text > p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .delivery-steps {
    margin-bottom: 1rem;
  }
  .delivery-steps li {
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .delivery-price {
    padding: 0.5rem 0.8rem;
  }
  .delivery-price .price__value {
    font-size: 1.2rem;
  }
  .delivery-card__image {
    min-height: 10rem;
  }
  .contacts-wrapper {
    grid-template-columns: 1fr;
  }
  .contacts-info {
    padding: 1.2rem;
  }
  .form-wrapper {
    padding: 1.2rem;
  }
  .contact-item {
    gap: 0.5rem;
  }
  .contact-item__icon {
    width: 2rem;
    height: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-actions {
    flex-direction: column;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
