:root {
  --bg: #f6f6f3;
  --black: #050505;
  --dark: #1a1a1a;
  --gray: #8a8a8a;
  --card: #eeeeea;
  --accent: #9BE84D;
  --white: #ffffff;
  --radius-card: 24px;
  --radius-pill: 999px;
  --content: 1440px;
  --side: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--dark); transform: translateY(-2px); }
.btn--dark:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--accent);
}
.btn--outline:hover { background: var(--accent); transform: translateY(-2px); }
.btn--outline:active { transform: translateY(0); }

.link-underline {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity .2s ease;
}
.link-underline:hover { opacity: .6; }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: rgba(246, 246, 243, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__text { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }

.nav { display: flex; gap: 34px; }
.nav__link {
  font-size: 15px;
  color: var(--dark);
  transition: color .2s ease;
}
.nav__link:hover { color: var(--gray); }

.header__cta { height: 54px; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--black);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 20px;
  overflow-y: auto;
  max-height: 100vh;
}
.mobile-menu__link { font-size: 20px; font-weight: 700; }
.mobile-menu__cta { margin-top: 4px; height: 50px; font-size: 14px; padding: 0 24px; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  padding-top: 40px;
  padding-bottom: 0;
}
.hero__title {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero__desc {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray);
  margin-top: 34px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.brands { padding-top: 56px; padding-bottom: 26px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.brands__title { font-size: 14px; color: var(--gray); line-height: 1.4; }
.brands__logos { display: flex; align-items: center; gap: 4px; }
.brands__logo { height: 45px; width: auto; max-width: 170px; object-fit: contain; opacity: .55; filter: grayscale(1); }

/* Hero right */
.hero__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px 20px;
}
.hero__card { border-radius: var(--radius-card); overflow: hidden; }

.hero__card--image {
  position: relative;
  border-top-left-radius: 120px;
  background: var(--card);
  aspect-ratio: 1 / 1;
}
.hero__machine { width: 100%; height: 100%; object-fit: cover; }
.growth-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card--stat {
  background: var(--card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
}
.stat__number { font-size: 68px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat__text { color: var(--gray); font-size: 15px; margin-top: 14px; }
.stat__progress {
  margin-top: auto;
  display: block;
  width: 60px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--black);
}

.hero__card--telemetry {
  grid-column: 1 / -1;
  position: relative;
  min-height: 120px;
  padding: 20px 24px;
  color: var(--white);
  background:
    radial-gradient(120% 120% at 80% 20%, #2b2b2b 0%, #0c0c0c 55%, #050505 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__card--telemetry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 85% 30%, rgba(120,120,120,.35), transparent 60%);
  pointer-events: none;
}
.telemetry__label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.telemetry__line { width: 24px; height: 2px; background: var(--accent); display: inline-block; }
.telemetry__title { position: relative; z-index: 1; font-size: 21px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

/* Approach */
.approach { padding-top: 0; padding-bottom: 90px; }
.approach__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach__title { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; }
.approach__text { font-size: 16px; line-height: 1.7; color: var(--gray); max-width: 620px; }

.approach__cards {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 20px;
  margin-top: 56px;
}
.quality-card {
  background: radial-gradient(120% 120% at 20% 20%, #2a2a2a 0%, #0c0c0c 60%, #050505 100%);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quality-card__number { font-size: 84px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.quality-card__percent { color: var(--accent); }
.quality-card__text { font-size: 16px; color: #cfcfcf; max-width: 300px; }

.catalog-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7);
}
.catalog-card__title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: 0.18em;
}
.catalog-card__btn {
  position: absolute;
  z-index: 1;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.catalog-card:hover .catalog-card__btn { transform: translateY(-50%) scale(1.06); }

/* Calculator */
.calculator { padding-top: 40px; padding-bottom: 90px; }
.calculator__head { max-width: 620px; margin-bottom: 40px; }
.calculator__title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.calculator__subtitle { color: var(--gray); font-size: 16px; margin-top: 16px; }

.calc-form {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.12);
}
.calc-form__body { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
.calc-form__left { display: flex; flex-direction: column; gap: 24px; }
.calc-form__right { display: flex; flex-direction: column; justify-content: center; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field__label { font-size: 14px; font-weight: 600; color: var(--dark); }
.field__input {
  height: 54px;
  border: 1px solid #e2e2dd;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--black);
  transition: border-color .2s ease;
}
.field__input:focus { outline: none; border-color: var(--black); }
select.field__input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23050505' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }

/* Radio chips */
.field__radio-row { display: flex; gap: 10px; }
.radio-chip { cursor: pointer; }
.radio-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-chip__mark {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid #e2e2dd;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.radio-chip input:checked + .radio-chip__mark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.radio-chip input:focus-visible + .radio-chip__mark { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Slider input */
.slider-input { display: flex; align-items: center; gap: 16px; }
.slider-input input[type=range] {
  -webkit-appearance: none;
  flex: 1;
  height: 6px;
  background: #e2e2dd;
  border-radius: 10px;
  outline: none;
}
.slider-input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  border: none;
  transition: transform .15s ease;
}
.slider-input input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider-input input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  border: none;
}
.slider-input__value {
  min-width: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

/* Results */
.calc-form__results { display: flex; flex-direction: column; gap: 28px; }
.calc-result { display: flex; flex-direction: column; gap: 4px; }
.calc-result__label { font-size: 14px; color: var(--gray); }
.calc-result__value { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; }

.calc-form__footer { margin-top: 30px; }
.calc-form__status { margin-top: 18px; font-size: 15px; min-height: 22px; }
.calc-form__status.is-error { color: #c0392b; }
.calc-form__status.is-success { color: #2f8f2f; }

/* Reviews */
.reviews { padding-top: 40px; padding-bottom: 90px; }
.reviews__title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 40px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review__text { font-size: 17px; line-height: 1.5; }
.review__author { font-weight: 700; margin-top: auto; }
.review__author span { display: block; font-weight: 400; color: var(--gray); font-size: 14px; margin-top: 4px; }

/* FAQ */
.faq { padding-top: 40px; padding-bottom: 100px; }
.faq__title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 40px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; max-width: 900px; }
.faq__item {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  border: 1px solid #ececE6;
}
.faq__q { font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-size: 26px; font-weight: 400; color: var(--gray); transition: transform .2s ease; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { color: var(--gray); font-size: 15px; line-height: 1.6; margin-top: 14px; }

/* Footer */
.footer { background: var(--black); color: var(--white); padding: 60px 0; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.logo--footer .logo__text { color: var(--white); }
.logo--footer img { filter: invert(1); }
.footer__tagline { color: var(--gray); font-size: 14px; margin-top: 12px; }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { color: #cfcfcf; font-size: 15px; transition: color .2s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__copy { color: var(--gray); font-size: 14px; width: 100%; }

.footer__disclaimer { color: #555; font-size: 11px; width: 100%; margin-top: 4px; }

.footer__contacts { text-align: right; }
.footer__contact-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.footer__contact-label:first-child { margin-top: 0; }
.footer__contact-link { font-size: 15px; color: var(--white); font-weight: 600; display: block; margin-bottom: 2px; transition: color .2s ease; }
.footer__contact-link:hover { color: var(--accent); }

/* Tablet */
@media (max-width: 1024px) {
  :root { --side: 40px; }
  .approach__top { gap: 40px; }
  .approach__cards { grid-template-columns: 1fr; }
  .quality-card { min-height: 200px; }
  .catalog-card__btn { width: 100px; height: 100px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .slider__card { flex: 0 0 calc((100% - 40px) / 3); }

  .nav { display: none; }
  .header__actions { display: none; }
  .burger { display: flex; }

  .hero__card--image { aspect-ratio: auto; }
  .hero__card--stat { padding: 20px; aspect-ratio: auto; }
  .stat__number { font-size: 44px; }
  .stat__text { font-size: 12px; margin-top: 4px; line-height: 1.3; }
  .growth-badge { width: 48px; height: 48px; top: 10px; right: 10px; }
  .growth-badge svg { width: 24px; height: 24px; }
  .catalog-card { display: none; }

  .hero { padding-bottom: 16px; }
  .approach { padding-bottom: 30px; }
  .catalog-section { padding-bottom: 30px; }
  .calculator { padding-bottom: 30px; }
  .reviews { padding-bottom: 30px; }
  .faq { padding-bottom: 40px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .approach__top { grid-template-columns: 1fr; }
  .calc-form__grid { grid-template-columns: 1fr; }
  .calc-form__row { grid-template-columns: repeat(2, 1fr); }
  .calc-form__body { grid-template-columns: 1fr; gap: 32px; }
}

/* Catalog slider */
.catalog-section { padding-top: 40px; padding-bottom: 90px; }
.catalog-section__title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }

.catalog-filters { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.catalog-filter {
  height: 42px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  background: var(--card);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.catalog-filter:hover { background: #e0e0da; }
.catalog-filter.active { background: var(--black); color: var(--white); }

.slider-wrapper { position: relative; }
.slider {
  display: flex;
  gap: 20px;
  padding: 30px 4px 30px;
  margin: -20px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.slider::-webkit-scrollbar { display: none; }
.slider { -ms-overflow-style: none; scrollbar-width: none; }

.slider__card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.08);
  transition: transform .2s ease;
}
.slider__card:hover { transform: translateY(-4px); }

.slider__img-wrapper {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 4 / 3;
  background: var(--card);
  overflow: hidden;
}
.slider__img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.slider__body { padding: 24px; }
.slider__name { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.slider__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.slider__tags span {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--dark);
}
.slider__price { font-size: 20px; font-weight: 800; }

.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e2e2dd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.12);
}
.slider-arrow:hover { background: var(--black); color: var(--white); }
.slider-arrow--left { left: -16px; }
.slider-arrow--right { right: -16px; }

/* Mobile */
@media (max-width: 600px) {
  :root { --side: 20px; }
  .header__inner { padding-top: 14px; padding-bottom: 14px; }

  .hero { padding-bottom: 32px; }
  .approach { padding-bottom: 40px; }
  .catalog-section { padding-bottom: 40px; }
  .calculator { padding-bottom: 40px; }
  .reviews { padding-bottom: 40px; }
  .faq { padding-bottom: 50px; }
  .hero__cta { flex-direction: column; align-items: center; gap: 18px; }
  .hero__cta .btn { width: 100%; }
  .brands { flex-direction: column; align-items: flex-start; gap: 16px; }
  .brands__logos { flex-wrap: wrap; }
  .brands__logo { height: 36px; max-width: 140px; }

  .hero__right { grid-template-columns: 1fr; }
  .hero__card--image { border-top-left-radius: 80px; }
  .hero__card--stat { aspect-ratio: auto; padding: 20px; min-height: 120px; }
  .stat__number { font-size: 44px; }
  .stat__text { font-size: 13px; margin-top: 8px; margin-bottom: 12px; }
  .growth-badge { width: 72px; height: 72px; top: 12px; right: 12px; }
  .growth-badge svg { width: 32px; height: 32px; }

  .brands { display: none; }

  .catalog-card__btn { display: none; }
  .catalog-card__title { letter-spacing: 0.12em; }
  .quality-card { min-height: 160px; padding: 24px; }
  .quality-card__number { font-size: 56px; }
  .catalog-card { display: none; }

  .calc-form { padding: 24px; }
  .calc-form__body { grid-template-columns: 1fr; gap: 24px; }
  .calc-form__results { flex-direction: column; gap: 20px; }
  .calc-form__submit { width: 100%; }
  .calc-result__value { font-size: 28px; }
  .field__radio-row { flex-direction: column; }

  .footer { padding: 40px 0; }
  .footer__contacts { text-align: left; }

  .slider__card { flex: 0 0 calc(100% - 40px); }
  .slider-arrow { width: 44px; height: 44px; }
  .slider-arrow--left { left: -6px; }
  .slider-arrow--right { right: -6px; }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal.open { visibility: visible; opacity: 1; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.modal__body {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.25);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  padding: 6px;
  border-radius: 50%;
  transition: background .2s ease;
}
.modal__close:hover { background: var(--card); color: var(--black); }
.modal__title { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.modal__subtitle { color: var(--gray); font-size: 14px; margin-top: 6px; margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.field__textarea {
  height: auto;
  padding: 14px 18px;
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.modal__body--product { max-width: 860px; }
.product-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-modal__img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: var(--card); }
.product-modal__img img { width: 100%; height: 100%; object-fit: cover; }
.product-modal__name { font-size: 26px; font-weight: 800; margin: 12px 0 6px; letter-spacing: -0.02em; }
.product-modal__price { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.product-modal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 18px; }
.product-modal__spec { font-size: 14px; display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #eeeee9; }
.product-modal__spec-label { color: var(--gray); }
.product-modal__spec-val { font-weight: 600; }
.product-modal__desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 22px; }
.product-modal__btn { width: 100%; }

@media (max-width: 600px) {
  .modal__body { padding: 28px 20px; max-width: calc(100% - 32px); }
  .modal__body--product { max-width: calc(100% - 32px); }
  .product-modal__grid { grid-template-columns: 1fr; gap: 20px; }
  .product-modal__name { font-size: 22px; }
  .product-modal__price { font-size: 22px; }
}
