.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  margin: 28px 0 34px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.08), rgba(30, 136, 229, 0.08));
  border: 1px solid rgba(11, 60, 93, 0.1);
}

.catalog-hero h1 {
  margin: 0 0 14px;
  max-width: 900px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.catalog-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5b68;
}

.catalog-eyebrow {
  margin: 0 0 10px;
  color: #0b6fb3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.catalog-hero__panel {
  display: grid;
  gap: 12px;
}

.catalog-hero__metric {
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(8, 35, 54, 0.08);
}

.catalog-hero__metric span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #123247;
}

.catalog-hero__metric small {
  display: block;
  margin-top: 5px;
  color: #647484;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.catalog-filter__item {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f2f6f9;
  color: #17384f;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid rgba(18, 50, 71, 0.08);
}

.catalog-filter__item:hover,
.catalog-filter__item--active {
  background: #123247;
  color: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 50, 71, 0.1);
  box-shadow: 0 18px 48px rgba(8, 35, 54, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 111, 179, 0.3);
  box-shadow: 0 22px 58px rgba(8, 35, 54, 0.13);
}

.product-card__image-link {
  display: block;
  text-decoration: none;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f4f7fa;
  overflow: hidden;
}

.product-card__image img,
.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  color: #8ca0af;
  background:
    radial-gradient(circle at 30% 20%, rgba(11, 111, 179, 0.14), transparent 32%),
    linear-gradient(135deg, #f5f8fb, #eaf1f6);
}

.product-card__placeholder span {
  font-size: 34px;
  font-weight: 850;
  color: rgba(18, 50, 71, 0.45);
}

.product-card__placeholder small {
  font-size: 14px;
}

.product-card__placeholder--large {
  min-height: 460px;
  border-radius: 28px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.product-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.product-card__category,
.product-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.product-card__category {
  background: rgba(11, 111, 179, 0.1);
  color: #0b6fb3;
}

.product-card__status {
  background: rgba(31, 142, 82, 0.1);
  color: #1f8e52;
}

.product-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.product-card h2 a {
  color: #123247;
  text-decoration: none;
}

.product-card h2 a:hover {
  color: #0b6fb3;
}

.product-card p {
  margin: 0 0 20px;
  color: #5f6f7d;
  line-height: 1.55;
}

.product-card__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.catalog-btn:hover {
  transform: translateY(-1px);
}

.catalog-btn--primary {
  color: #ffffff;
  background: #0b6fb3;
  box-shadow: 0 12px 24px rgba(11, 111, 179, 0.22);
}

.catalog-btn--primary:hover {
  background: #095d96;
  color: #ffffff;
}

.catalog-btn--ghost {
  color: #123247;
  background: #ffffff;
  border-color: rgba(18, 50, 71, 0.18);
}

.catalog-btn--ghost:hover {
  background: #f2f6f9;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 22px;
  background: #f7fafc;
  border: 1px dashed rgba(18, 50, 71, 0.18);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: start;
  margin: 30px 0 34px;
}

.product-detail__image {
  overflow: hidden;
  min-height: 460px;
  border-radius: 28px;
  background: #f4f7fa;
  border: 1px solid rgba(18, 50, 71, 0.1);
  box-shadow: 0 18px 48px rgba(8, 35, 54, 0.08);
}

.product-detail__info {
  padding: 8px 0;
}

.product-detail__info h1 {
  margin: 0 0 16px;
  color: #123247;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.product-detail__lead {
  margin: 0 0 24px;
  color: #50616f;
  font-size: 18px;
  line-height: 1.65;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.product-detail__note {
  padding: 18px 20px;
  border-radius: 18px;
  color: #42515e;
  background: #f5f8fb;
  border: 1px solid rgba(18, 50, 71, 0.08);
  line-height: 1.55;
}

.product-section {
  margin: 28px 0;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 50, 71, 0.1);
  box-shadow: 0 12px 34px rgba(8, 35, 54, 0.06);
}

.product-section h2 {
  margin: 0 0 18px;
  color: #123247;
  font-size: 28px;
}

.product-section__text {
  color: #50616f;
  line-height: 1.7;
}

.product-specs {
  display: grid;
  gap: 18px;
}

.product-specs__group {
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid rgba(18, 50, 71, 0.08);
  overflow: hidden;
}

.product-specs__group h3 {
  margin: 0;
  padding: 16px 18px;
  font-size: 18px;
  color: #123247;
  background: rgba(11, 111, 179, 0.08);
}

.product-specs dl {
  margin: 0;
}

.product-specs dl > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 18px;
  border-top: 1px solid rgba(18, 50, 71, 0.08);
}

.product-specs dt {
  color: #667887;
  font-weight: 700;
}

.product-specs dd {
  margin: 0;
  color: #263946;
}

.product-section--cta {
  background: linear-gradient(135deg, #123247, #0b6fb3);
  color: #ffffff;
}

.product-section--cta h2,
.product-section--cta p {
  color: #ffffff;
}

.product-section--cta p {
  max-width: 760px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .catalog-hero,
  .product-detail {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .catalog-hero {
    padding: 24px;
    border-radius: 22px;
  }

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

  .product-card__footer,
  .product-detail__actions {
    flex-direction: column;
  }

  .catalog-btn {
    width: 100%;
  }

  .product-specs dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-section {
    padding: 22px;
  }
}

/* Quote request modal */
.catalog-btn {
  cursor: pointer;
  font: inherit;
}

.quote-modal-open {
  overflow: hidden;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 34, 0.62);
  backdrop-filter: blur(3px);
}

.quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f2f6f9;
  color: #123247;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.quote-modal__dialog h2 {
  margin: 0 44px 10px 0;
  color: #123247;
  font-size: 32px;
  line-height: 1.15;
}

.quote-modal__subtitle {
  margin: 0 0 20px;
  color: #5f6f7d;
  line-height: 1.55;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label span {
  color: #344b5c;
  font-weight: 750;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 50, 71, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: #123247;
  background: #ffffff;
  font: inherit;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(11, 111, 179, 0.65);
  box-shadow: 0 0 0 4px rgba(11, 111, 179, 0.12);
}

.quote-form input[readonly] {
  background: #f5f8fb;
  color: #667887;
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.quote-form__status {
  min-height: 22px;
  color: #5f6f7d;
  font-weight: 700;
}

.quote-form__status--success {
  color: #1f8e52;
}

.quote-form__status--error {
  color: #b42318;
}

.quote-form button[disabled] {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 640px) {
  .quote-modal {
    padding: 12px;
  }

  .quote-modal__dialog {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
  }

  .quote-form__actions {
    flex-direction: column;
  }
}

.quote-form__privacy {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f8fb;
  border: 1px solid rgba(18, 50, 71, 0.1);
}

.quote-form__privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0b6fb3;
}

.quote-form__privacy span {
  color: #42515e;
  font-weight: 600;
  line-height: 1.45;
}

.quote-form__privacy a {
  color: #0b6fb3;
  font-weight: 800;
}

.quote-form__privacy a:hover {
  color: #095d96;
}

.catalog-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.privacy-page {
  max-width: 940px;
  margin: 32px auto 48px;
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(18, 50, 71, 0.1);
  box-shadow: 0 18px 48px rgba(8, 35, 54, 0.08);
}

.privacy-page h1 {
  margin: 0 0 20px;
  color: #123247;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.privacy-page h2 {
  margin: 28px 0 10px;
  color: #123247;
  font-size: 24px;
}

.privacy-page p {
  color: #50616f;
  line-height: 1.7;
}

.privacy-page__note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f5f8fb;
  border: 1px solid rgba(18, 50, 71, 0.08);
}

.product-card__model {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(18, 50, 71, 0.08);
  color: #123247;
}

.product-card__specs {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f7fafc;
  border: 1px solid rgba(18, 50, 71, 0.08);
}

.product-card__specs div {
  display: grid;
  grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1fr);
  gap: 10px;
}

.product-card__specs dt {
  color: #667887;
  font-size: 13px;
  font-weight: 750;
}

.product-card__specs dd {
  margin: 0;
  color: #263946;
  font-size: 13px;
  font-weight: 750;
}

.product-detail__model {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #123247;
  background: #f2f6f9;
  border: 1px solid rgba(18, 50, 71, 0.08);
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-info-box {
  padding: 20px;
  border-radius: 20px;
  background: #f7fafc;
  border: 1px solid rgba(18, 50, 71, 0.08);
}

.product-info-box h3 {
  margin: 0 0 12px;
  color: #123247;
  font-size: 20px;
}

.product-info-box ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #50616f;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-card__specs div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* STAGE30_10_HOME_HERO_TITLE_FONT
   Размер главного заголовка на главной странице приведен к размеру заголовка
   блока "Основные направления". */
.home-hero h1,
.hero h1,
.hero-title,
.hero__title,
.main-hero h1,
.main-hero__title {
    font-size: 32px;
    line-height: 1.2;
}
