.product {
  background: var(--bg-light);
}

/* Правка 1: заголовок в этом разделе крупнее, чем стандартный
   .section-title (в Figma 70px против 44px в остальных разделах),
   с равными отступами от градиентной полоски — сверху к тексту
   и снизу к изображению (было 40px снизу, стало 18px как сверху). */
@media (min-width: 600px) {
  .product .section-title {
    font-size: clamp(36px, 5.8vw, 58px);
  }

  .product .heading-accent {
    margin-top: 10px;
  }

  .product .product__body {
    margin-top: 18px;
  }
}

.glow--product-blue {
  width: 620px;
  height: 420px;
  left: -8%;
  top: 30%;
  background: radial-gradient(circle, rgba(18, 92, 235, 0.14), transparent 70%);
}

.product__body {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.product__image-wrap {
  position: relative;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.82) 0%, rgba(209, 227, 255, 0.42) 50%, rgba(240, 15, 117, 0.12) 100%);
  padding: 18px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.product__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 12px);
}

.product__caption {
  position: absolute;
  left: 3.59%;
  top: 87.76%;
  width: 92.11%;
  height: 6.53%;
  min-height: 30px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(5, 13, 33, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  overflow: hidden;
}

.product__caption span {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.product__caption span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--white);
}

.caption-index {
  margin-left: 12px;
  opacity: 0.7;
}

.quote-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(105deg, #050b20 0%, #071437 58%, #250938 100%);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 46px -10px rgba(5, 20, 77, 0.3);
}

.quote-card__accent {
  width: 96px;
  height: 4px;
  border-radius: 2px;
  background: var(--brand-gradient);
  margin-bottom: 22px;
}

.quote-card__main {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--paper);
}

.quote-card__emphasis {
  margin-top: 24px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}
