/* GreenchZelen — чистая вёрстка 1в1 с greenchzelen.ru
   Автоскейл: базовая сетка 1200px, все размеры в var(--u) = 100vw/1200 */

:root {
  --u: calc(100vw / 1200);
  --green: #4c7a1e;
  --dark: #19191b;
  --grey: #efefef;
  --white: #ffffff;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ===== Шапка (fixed) ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: calc(80 * var(--u));
  pointer-events: none;
}
.header__grid {
  position: relative;
  width: calc(1200 * var(--u));
  height: 100%;
  margin: 0 auto;
}
.header__logo {
  position: absolute;
  top: calc(27 * var(--u));
  left: calc(20 * var(--u));
  width: calc(123 * var(--u));
  pointer-events: auto;
}
.header__logo img { width: 100%; height: auto; }
.header__pill {
  position: absolute;
  top: 0;
  left: calc(87 * var(--u));
  width: calc(1026 * var(--u));
  height: auto;
  pointer-events: none;
}
.header__nav a {
  position: absolute;
  top: calc(25 * var(--u));
  height: calc(25 * var(--u));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16 * var(--u));
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
  pointer-events: auto;
  transition: color .2s;
}
.header__nav a:hover { color: var(--green); }
.header__nav .n1 { left: calc(349 * var(--u)); width: calc(119 * var(--u)); }
.header__nav .n2 { left: calc(483 * var(--u)); width: calc(84 * var(--u)); }
.header__nav .n3 { left: calc(582 * var(--u)); width: calc(66 * var(--u)); }
.header__nav .n4 { left: calc(663 * var(--u)); width: calc(86 * var(--u)); }
.header__nav .n5 { left: calc(764 * var(--u)); width: calc(86 * var(--u)); }

/* ===== Общие для зеро-блоков ===== */
.zb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.zb__grid {
  position: relative;
  width: calc(1200 * var(--u));
  height: 100%;
  margin: 0 auto;
}
.abs { position: absolute; }

/* ===== Геро ===== */
.hero {
  height: calc(680 * var(--u));
  background: var(--grey);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__eyebrow {
  top: calc(136 * var(--u));
  left: calc(-5 * var(--u));
  width: calc(475 * var(--u));
  font-size: calc(13 * var(--u));
  font-weight: 600;
  line-height: calc(20 * var(--u));
  text-align: center;
  z-index: 3;
}
.hero__title {
  top: calc(178 * var(--u));
  left: calc(22 * var(--u));
  width: calc(424 * var(--u));
  font-size: calc(38 * var(--u));
  font-weight: 500;
  line-height: 1;
  z-index: 3;
}
.hero__title .g { color: var(--green); }
.hero__btn {
  top: calc(519 * var(--u));
  left: calc(948 * var(--u));
  width: calc(232 * var(--u));
  height: calc(43 * var(--u));
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: calc(30 * var(--u));
  color: #fff;
  font-size: calc(13 * var(--u));
  font-weight: 600;
  gap: calc(10 * var(--u));
  transition: background .2s;
}
.hero__btn:hover { background: #46701d; }
.hero__btn .arr {
  width: calc(28 * var(--u));
  height: calc(28 * var(--u));
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__btn .arr svg { width: calc(12 * var(--u)); height: calc(12 * var(--u)); }

/* ===== О нас ===== */
.about {
  height: calc(1126 * var(--u));
  background: #fff;
}
.about__chip {
  top: calc(36 * var(--u));
  left: calc(20 * var(--u));
  width: calc(160 * var(--u));
  height: calc(41 * var(--u));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: calc(30 * var(--u));
  color: var(--green);
  font-size: calc(13 * var(--u));
  font-weight: 600;
  text-transform: uppercase;
}
.about__bigtext {
  top: calc(176 * var(--u));
  left: calc(362 * var(--u));
  width: calc(804 * var(--u));
  font-size: calc(35 * var(--u));
  font-weight: 500;
  line-height: calc(44 * var(--u));
  color: #000;
}
.about__card {
  top: calc(136 * var(--u));
  left: calc(19 * var(--u));
  width: calc(282 * var(--u));
  height: calc(300 * var(--u));
  perspective: 1000px;
}
.about__card-face {
  position: absolute;
  inset: 0;
  border-radius: calc(19 * var(--u));
  padding: calc(14 * var(--u)) calc(23 * var(--u));
  backface-visibility: hidden;
  transition: opacity .45s ease;
}
.about__card-front { background: var(--grey); color: var(--dark); }
.about__card-back { background: var(--dark); color: var(--grey); opacity: 0; }
.about__card:hover .about__card-back { opacity: 1; }
.about__card:hover .about__card-front { opacity: 0; }
.about__card .num {
  font-size: calc(60 * var(--u));
  font-weight: 600;
  line-height: calc(93 * var(--u));
}
.about__card .sub {
  font-size: calc(15 * var(--u));
  font-weight: 600;
  margin-top: calc(-7 * var(--u));
  width: calc(200 * var(--u));
}
.about__card p {
  margin-top: calc(18 * var(--u));
  font-size: calc(12 * var(--u));
  font-weight: 300;
  line-height: 1.55;
  width: calc(243 * var(--u));
}
.about__video {
  top: calc(480 * var(--u));
  left: calc(20 * var(--u));
  width: calc(1160 * var(--u));
  height: calc(544 * var(--u));
  border-radius: calc(20 * var(--u));
  overflow: hidden;
  background: #000;
}
.about__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__watch {
  top: calc(1059 * var(--u));
  left: calc(488 * var(--u));
  width: calc(224 * var(--u));
  height: calc(47 * var(--u));
  border: 1px solid var(--green);
  border-radius: calc(30 * var(--u));
  color: var(--green);
  font-size: calc(13 * var(--u));
  font-weight: 600;
  background: #fff;
  transition: background .2s, color .2s;
}
.about__watch:hover { background: var(--green); color: #fff; }

/* ===== Наши продукты ===== */
.products {
  height: calc(526 * var(--u));
  background: #fff;
}
.products__title {
  top: calc(55 * var(--u));
  left: calc(428 * var(--u));
  width: calc(344 * var(--u));
  font-size: calc(40 * var(--u));
  font-weight: 600;
  text-align: center;
  color: #000;
}
.products__card {
  top: calc(207 * var(--u));
  width: calc(275 * var(--u));
  height: calc(258 * var(--u));
  background: var(--grey);
  border-radius: calc(19 * var(--u));
}
.c1 { left: calc(39 * var(--u)); }
.c2 { left: calc(332 * var(--u)); }
.c3 { left: calc(626 * var(--u)); }
.c4 { left: calc(919 * var(--u)); }
.products__img { height: auto; }
.i1 { top: calc(117 * var(--u)); left: calc(16 * var(--u)); width: calc(325 * var(--u)); }
.i2 { top: calc(137 * var(--u)); left: calc(329 * var(--u)); width: calc(297 * var(--u)); }
.i3 { top: calc(122 * var(--u)); left: calc(578 * var(--u)); width: calc(354 * var(--u)); }
.i4 { top: calc(140 * var(--u)); left: calc(912 * var(--u)); width: calc(301 * var(--u)); }
.products__label {
  font-size: calc(12 * var(--u));
  font-weight: 600;
  color: #000;
  text-align: center;
}
.l1 { top: calc(375 * var(--u)); left: calc(135 * var(--u)); width: calc(88 * var(--u)); }
.l2 { top: calc(375 * var(--u)); left: calc(449 * var(--u)); width: calc(41 * var(--u)); white-space: nowrap; }
.l3 { top: calc(366 * var(--u)); left: calc(724 * var(--u)); width: calc(86 * var(--u)); }
.l4 { top: calc(366 * var(--u)); left: calc(1015 * var(--u)); width: calc(91 * var(--u)); }
.products__btn {
  width: calc(224 * var(--u));
  height: calc(47 * var(--u));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: calc(30 * var(--u));
  color: #fff;
  font-size: calc(13 * var(--u));
  font-weight: 600;
  transition: background .2s;
}
.products__btn:hover { background: #46701d; }
.b1 { top: calc(400 * var(--u)); left: calc(66 * var(--u)); }
.b2 { top: calc(401 * var(--u)); left: calc(359 * var(--u)); }
.b3 { top: calc(401 * var(--u)); left: calc(651 * var(--u)); }
.b4 { top: calc(401 * var(--u)); left: calc(946 * var(--u)); }

/* ===== Хиты продаж ===== */
.hits { height: calc(136 * var(--u)); }
.hits__title {
  top: calc(55 * var(--u));
  left: calc(428 * var(--u));
  width: calc(344 * var(--u));
  font-size: calc(40 * var(--u));
  font-weight: 600;
  text-align: center;
  color: #000;
}

/* ===== Магазин (хиты) ===== */
.store { padding-bottom: calc(40 * var(--u)); }
.store__grid {
  width: calc(1200 * var(--u));
  margin: 0 auto;
  padding: 0 calc(31 * var(--u));
  box-sizing: border-box;
}
.store__search {
  display: flex;
  justify-content: flex-end;
  margin-bottom: calc(40 * var(--u));
}
.store__search input {
  width: calc(170 * var(--u));
  height: calc(34 * var(--u));
  border: 1px solid #d7d7d7;
  border-right: none;
  border-radius: calc(2 * var(--u)) 0 0 calc(2 * var(--u));
  padding: 0 calc(10 * var(--u));
  font-family: inherit;
  font-size: calc(14 * var(--u));
  color: #333;
  outline: none;
}
.store__search input::placeholder { color: #b3b3b3; }
.store__search button {
  width: calc(38 * var(--u));
  height: calc(34 * var(--u));
  border: 1px solid #d7d7d7;
  border-radius: 0 calc(2 * var(--u)) calc(2 * var(--u)) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.store__search svg { width: calc(16 * var(--u)); height: calc(16 * var(--u)); }
.store__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(27 * var(--u));
}
.store__card {
  background: #efefef;
  border-radius: calc(20 * var(--u));
  padding: calc(20 * var(--u)) calc(20 * var(--u)) calc(24 * var(--u));
  display: flex;
  flex-direction: column;
  min-height: calc(719 * var(--u));
}
.store__card .pimg {
  height: calc(240 * var(--u));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(36 * var(--u));
}
.store__card .pimg img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.store__card .pname {
  color: var(--green);
  font-size: calc(17 * var(--u));
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  min-height: calc(31 * var(--u));
}
.store__card .pprice {
  margin-top: calc(14 * var(--u));
  text-align: center;
  color: var(--green);
  font-size: calc(20 * var(--u));
  font-weight: 400;
}
.store__card .pprice sup {
  font-size: calc(10 * var(--u));
  vertical-align: super;
}
.store__card .pprice .per { font-size: calc(15 * var(--u)); }
.store__card .psku {
  margin-top: calc(8 * var(--u));
  text-align: center;
  color: #777;
  font-size: calc(10 * var(--u));
  font-weight: 300;
}
.store__card .popts { margin-top: calc(22 * var(--u)); }
.store__card .plabel {
  font-size: calc(12 * var(--u));
  color: #333;
  margin-bottom: calc(8 * var(--u));
}
.store__card .pchips {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--u));
}
.store__card .chip {
  border: 1px solid #b9b9b9;
  border-radius: calc(30 * var(--u));
  background: transparent;
  padding: calc(7 * var(--u)) calc(13 * var(--u));
  font-size: calc(12 * var(--u));
  color: #333;
  transition: border-color .2s;
}
.store__card .chip.active { border-color: #555; }
.store__card .pbottom { margin-top: auto; }
.store__card .pmore {
  width: 100%;
  height: calc(32 * var(--u));
  border: 1px solid var(--green);
  border-radius: calc(30 * var(--u));
  color: var(--green);
  font-size: calc(10 * var(--u));
  font-weight: 600;
  background: transparent;
  transition: background .2s, color .2s;
}
.store__card .pmore:hover { background: var(--green); color: #fff; }
.store__card .pqty {
  margin-top: calc(8 * var(--u));
  height: calc(34 * var(--u));
  background: #fff;
  border-radius: calc(30 * var(--u));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(6 * var(--u));
}
.store__card .pqty button {
  width: calc(26 * var(--u));
  height: calc(26 * var(--u));
  font-size: calc(16 * var(--u));
  color: #333;
  line-height: 1;
}
.store__card .pqty .q { font-size: calc(13 * var(--u)); }
.store__card .pcart {
  margin-top: calc(8 * var(--u));
  width: 100%;
  height: calc(40 * var(--u));
  background: var(--green);
  border-radius: calc(30 * var(--u));
  color: #fff;
  font-size: calc(15 * var(--u));
  font-weight: 600;
  transition: background .2s;
}
.store__card .pcart:hover { background: #46701d; }

/* ===== Почему мы ===== */
.why {
  height: calc(1790 * var(--u));
  background: #fff;
}
.why__bg {
  top: calc(21 * var(--u));
  left: calc(-157 * var(--u));
  width: calc(1515 * var(--u));
  height: calc(1747 * var(--u));
  object-fit: cover;
  max-width: none;
}
.why__strip {
  top: calc(1684 * var(--u));
  left: calc(-153 * var(--u));
  width: calc(1512 * var(--u));
  height: calc(118 * var(--u));
  object-fit: cover;
  max-width: none;
}
.why__title {
  top: calc(6 * var(--u));
  left: calc(412 * var(--u));
  width: calc(377 * var(--u));
  font-size: calc(50 * var(--u));
  font-weight: 600;
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.why__card {
  top: calc(var(--y) * var(--u));
  left: calc(var(--x) * var(--u));
  width: calc(510 * var(--u));
  height: calc(189 * var(--u));
  border-radius: calc(19 * var(--u));
  background: rgba(99, 99, 99, 0.2);
  padding: calc(21 * var(--u)) calc(18 * var(--u)) 0;
}
.why__card .wt {
  font-size: calc(20 * var(--u));
  font-weight: 700;
  line-height: calc(26 * var(--u));
  color: var(--green);
}
.why__card p {
  margin-top: calc(11 * var(--u));
  font-size: calc(15 * var(--u));
  font-weight: 500;
  line-height: calc(19.5 * var(--u));
  color: var(--green);
  width: calc(451 * var(--u));
}
.why__card .dot {
  position: absolute;
  top: calc(16 * var(--u));
  width: calc(28 * var(--u));
  height: calc(28 * var(--u));
  border-radius: 50%;
  background: var(--green);
}
.why__card .dot.right { right: calc(10 * var(--u)); }
.why__card .dot.left { left: calc(9 * var(--u)); }
/* карточки правой колонки: текст с отступом слева под точку */
.why__card .dot.left ~ .wt,
.why__card .dot.left ~ p { margin-left: calc(41 * var(--u)); width: calc(433 * var(--u)); }

/* ===== FAQ ===== */
.faq { background: #fcfbfd; }
.faq__grid { height: auto; min-height: calc(760 * var(--u)); padding-bottom: calc(60 * var(--u)); }
.faq__title {
  top: calc(63 * var(--u));
  left: calc(20 * var(--u));
  width: calc(480 * var(--u));
  font-size: calc(44 * var(--u));
  font-weight: 600;
  line-height: calc(48 * var(--u));
  text-transform: uppercase;
  color: var(--dark);
}
.faq__media {
  top: calc(222 * var(--u));
  left: calc(20 * var(--u));
  width: calc(400 * var(--u));
  height: calc(476 * var(--u));
  border-radius: calc(19 * var(--u));
  overflow: hidden;
  background: #dfe5da;
}
.faq__media video { width: 100%; height: 100%; object-fit: cover; }
.faq__list {
  position: relative;
  margin-left: calc(520 * var(--u));
  margin-top: calc(75 * var(--u));
  width: calc(660 * var(--u));
}
.faq__item {
  border-top: 1px solid #e5e4e9;
  transition: background .2s;
}
.faq__item:first-child { border-top: none; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(16 * var(--u));
  padding: calc(19 * var(--u)) calc(24 * var(--u));
  font-size: calc(18 * var(--u));
  font-weight: 600;
  color: var(--green);
  line-height: calc(25 * var(--u));
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
  flex: 0 0 auto;
  width: calc(40 * var(--u));
  height: calc(40 * var(--u));
  border-radius: 50%;
  background: #efefef url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 8L16 16M16 16V10M16 16H10' stroke='%2319191b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/45% no-repeat;
  transition: transform .3s, background-color .3s;
}
.faq__item[open] {
  background: #19191b;
  border-radius: calc(19 * var(--u));
  border-top-color: transparent;
}
.faq__item[open] + .faq__item { border-top-color: transparent; }
.faq__item[open] summary i {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 16L16 8M16 8V14M16 8H10' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.faq__body {
  padding: 0 calc(24 * var(--u)) calc(24 * var(--u));
  font-size: calc(16 * var(--u));
  line-height: calc(22 * var(--u));
  color: #fff;
  font-weight: 400;
  max-width: calc(600 * var(--u));
}

/* ===== Остались вопросы ===== */
.ask { height: calc(254 * var(--u)); }
.ask__title {
  top: calc(44 * var(--u));
  left: calc(388 * var(--u));
  width: calc(424 * var(--u));
  font-size: calc(40 * var(--u));
  font-weight: 600;
  text-align: center;
  color: #000;
  white-space: nowrap;
}

/* Появление блоков при скролле (как у Тильды) */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.ask__form {
  top: calc(152 * var(--u));
  left: calc(20 * var(--u));
  width: calc(1162 * var(--u));
  height: calc(70 * var(--u));
  display: flex;
  gap: calc(22 * var(--u));
}
.ask__field {
  flex: 1 1 0;
  height: 100%;
  background: var(--grey);
  border-radius: calc(16 * var(--u));
  display: flex;
  align-items: center;
  padding: 0 calc(24 * var(--u));
  gap: calc(10 * var(--u));
}
.ask__field input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: calc(18 * var(--u));
  color: var(--dark);
}
.ask__field input::placeholder { color: #a8a8a8; }
.ask__field .flag {
  flex: 0 0 auto;
  width: calc(21 * var(--u));
  height: calc(15 * var(--u));
  border-radius: calc(2 * var(--u));
  background: linear-gradient(to bottom, #fff 33%, #2f6fce 33%, #2f6fce 66%, #e23d3d 66%);
}
.ask__submit {
  flex: 0 0 calc(440 * var(--u));
  background: var(--green);
  border-radius: calc(16 * var(--u));
  color: #fff;
  font-size: calc(20 * var(--u));
  font-weight: 600;
  transition: background .2s;
}
.ask__submit:hover { background: #46701d; }

/* ===== Доставка ===== */
.delivery { height: calc(828 * var(--u)); }
.delivery__green {
  top: calc(7 * var(--u));
  left: calc(18 * var(--u));
  width: calc(389 * var(--u));
  height: calc(760 * var(--u));
  background: var(--green);
  border-radius: calc(20 * var(--u));
  overflow: hidden;
}
.delivery__green .ellipse {
  position: absolute;
  top: calc(55 * var(--u));
  left: calc(115 * var(--u));
  width: calc(269 * var(--u));
  height: auto;
}
.delivery__green .trunk {
  position: absolute;
  top: calc(400 * var(--u));
  left: calc(163 * var(--u));
  width: calc(127 * var(--u));
  height: auto;
}
.delivery__green .dt {
  position: absolute;
  top: calc(92 * var(--u));
  left: calc(55 * var(--u));
  font-size: calc(40 * var(--u));
  font-weight: 600;
  line-height: calc(42 * var(--u));
  color: #fff;
  text-transform: uppercase;
}
.delivery__card {
  top: calc(7 * var(--u));
  left: calc(422 * var(--u));
  width: calc(757 * var(--u));
  height: calc(759 * var(--u));
  background: var(--grey);
  border-radius: calc(20 * var(--u));
}
.delivery__text {
  left: calc(493 * var(--u));
  width: calc(591 * var(--u));
  font-size: calc(22 * var(--u));
  line-height: calc(29 * var(--u));
  color: #000;
  font-weight: 400;
}
.delivery__text.grey { color: #6e6e6e; }
.delivery__text.accent { color: var(--green); font-weight: 700; }
.t1 { top: calc(127 * var(--u)); }
.t2 { top: calc(224 * var(--u)); font-size: calc(20 * var(--u)); }
.t3 { top: calc(316 * var(--u)); }
.t4 { top: calc(486 * var(--u)); }
.t5 { top: calc(616 * var(--u)); }
.delivery__line {
  left: calc(493 * var(--u));
  width: calc(533 * var(--u));
  height: 1px;
  background: #cfcfcf;
}
.l1 { top: calc(209 * var(--u)); }
.l2 { top: calc(471 * var(--u)); }
.delivery__van {
  top: calc(345 * var(--u));
  left: calc(-160 * var(--u));
  width: calc(690 * var(--u));
  height: auto;
  max-width: none;
}

/* ===== Контакты ===== */
.contacts { height: calc(479 * var(--u)); }
.contacts__logo {
  top: calc(39 * var(--u));
  left: calc(20 * var(--u));
  width: calc(248 * var(--u));
  height: auto;
}
.contacts__addr {
  top: calc(70 * var(--u));
  left: calc(380 * var(--u));
  font-size: calc(17 * var(--u));
  color: #000;
}
.contacts__phone {
  top: calc(160 * var(--u));
  left: calc(380 * var(--u));
  font-size: calc(20 * var(--u));
  font-weight: 700;
  color: #000;
}
.contacts__mail {
  top: calc(229 * var(--u));
  left: calc(382 * var(--u));
  font-size: calc(18 * var(--u));
  color: #000;
}
.contacts__soc {
  top: calc(385 * var(--u));
  width: calc(43 * var(--u));
  height: calc(43 * var(--u));
}
.contacts__soc img { width: 100%; height: 100%; }
.s1 { left: calc(382 * var(--u)); }
.s2 { left: calc(433 * var(--u)); }
.s3 { left: calc(485 * var(--u)); }
.contacts__map {
  top: calc(71 * var(--u));
  left: calc(675 * var(--u));
  width: calc(505 * var(--u));
  height: calc(356 * var(--u));
  background: #e0e0e0;
  overflow: hidden;
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contacts__policy {
  top: calc(388 * var(--u));
  left: calc(20 * var(--u));
  font-size: calc(13 * var(--u));
  color: var(--green);
}
.contacts__copy {
  top: calc(408 * var(--u));
  left: calc(20 * var(--u));
  font-size: calc(13 * var(--u));
  color: #000;
}

/* ===== Попап видео ===== */
.vpopup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vpopup__box {
  position: relative;
  width: min(1000px, 90vw);
}
.vpopup__box video {
  width: 100%;
  border-radius: 12px;
}
.vpopup__close {
  position: absolute;
  top: -44px;
  right: -8px;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

/* Бургер и мобильное меню (спрятаны на десктопе) */
.burger { display: none; }
.mmenu { display: none; }
.why__sprout-m { display: none; }

/* ============================================================
   МОБИЛЬНАЯ ВЕРСИЯ (сетка 320, раскладки res-320 из оригинала)
   ============================================================ */
@media (max-width: 639px) {
  :root { --u: calc(100vw / 320); }

  /* --- Шапка: белая пилюля с лого и бургером --- */
  .header { height: calc(68 * var(--u)); }
  .header__grid { width: 100%; }
  .header__grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(10 * var(--u));
    right: calc(10 * var(--u));
    bottom: calc(4 * var(--u));
    background: #fff;
    border-radius: calc(32 * var(--u));
    pointer-events: auto;
  }
  .header__pill, .header__nav { display: none; }
  .header__logo {
    top: calc(14 * var(--u));
    left: calc(24 * var(--u));
    width: calc(92 * var(--u));
  }
  .burger {
    display: block;
    position: absolute;
    top: calc(20 * var(--u));
    right: calc(28 * var(--u));
    width: calc(30 * var(--u));
    height: calc(24 * var(--u));
    pointer-events: auto;
  }
  .burger span {
    display: block;
    height: 2px;
    background: #19191b;
    margin: calc(5 * var(--u)) 0;
    border-radius: 2px;
  }
  .mmenu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .45);
  }
  .mmenu[hidden] { display: none; }
  .mmenu__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 69%;
    background: #ececec;
    padding: calc(24 * var(--u)) calc(24 * var(--u)) calc(32 * var(--u));
    display: flex;
    flex-direction: column;
  }
  .mmenu__slash {
    font-size: calc(34 * var(--u));
    font-weight: 600;
    color: #fff;
  }
  .mmenu__close {
    position: absolute;
    top: calc(18 * var(--u));
    right: calc(20 * var(--u));
    font-size: calc(22 * var(--u));
    color: #19191b;
  }
  .mmenu__nav {
    margin-top: calc(30 * var(--u));
    display: flex;
    flex-direction: column;
    gap: calc(22 * var(--u));
  }
  .mmenu__nav a {
    font-size: 20px;
    color: #19191b;
  }
  .mmenu__cta {
    margin-top: auto;
    height: calc(56 * var(--u));
    background: var(--green);
    border-radius: calc(40 * var(--u));
    color: #fff;
    font-size: calc(15 * var(--u));
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(12 * var(--u));
  }
  .mmenu__cta .arr {
    width: calc(26 * var(--u));
    height: calc(26 * var(--u));
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mmenu__cta .arr svg { width: calc(11 * var(--u)); height: calc(11 * var(--u)); }

  /* --- Геро --- */
  .hero { height: calc(516 * var(--u)); }
  .hero__video {
    top: calc(150 * var(--u));
    left: 0;
    width: 100%;
    height: calc(366 * var(--u));
  }
  .hero__eyebrow {
    top: calc(64 * var(--u));
    left: calc(12 * var(--u));
    width: calc(300 * var(--u));
    font-size: 9px;
    line-height: 14px;
    text-align: left;
  }
  .hero__title {
    top: calc(98 * var(--u));
    left: calc(10 * var(--u));
    width: calc(252 * var(--u));
    font-size: 25px;
    line-height: 26px;
  }
  .hero__btn {
    top: calc(419 * var(--u));
    left: calc(116 * var(--u));
    width: calc(194 * var(--u));
    height: calc(36 * var(--u));
    font-size: 12px;
  }
  .hero__btn .arr { width: calc(24 * var(--u)); height: calc(24 * var(--u)); }

  /* --- О нас --- */
  .about { height: calc(797 * var(--u)); }
  .about__chip {
    top: calc(62 * var(--u));
    left: calc(10 * var(--u));
    width: calc(119 * var(--u));
    height: calc(30 * var(--u));
    font-size: 9px;
  }
  .about__card {
    top: calc(109 * var(--u));
    left: calc(10 * var(--u));
    width: calc(306 * var(--u));
    height: calc(202 * var(--u));
  }
  /* на мобиле показывается тёмная карточка 300+ */
  .about__card-front { display: none; }
  .about__card-back { opacity: 1; }
  .about__card-face { padding: calc(4 * var(--u)) calc(19 * var(--u)); }
  .about__card .num {
    font-size: 60px;
    line-height: 88px;
  }
  .about__card .sub {
    font-size: 13px;
    margin-top: 0;
    width: calc(190 * var(--u));
  }
  .about__card p {
    margin-top: calc(10 * var(--u));
    font-size: 9px;
    line-height: 14px;
    width: calc(250 * var(--u));
  }
  .about__bigtext {
    top: calc(332 * var(--u));
    left: calc(10 * var(--u));
    width: calc(297 * var(--u));
    font-size: 18px;
    line-height: 23px;
  }
  .about__video {
    top: calc(541 * var(--u));
    left: calc(10 * var(--u));
    width: calc(302 * var(--u));
    height: calc(200 * var(--u));
  }
  .about__watch {
    top: calc(755 * var(--u));
    left: calc(101 * var(--u));
    width: calc(119 * var(--u));
    height: calc(30 * var(--u));
    font-size: 9px;
  }

  /* --- Наши продукты: 2×2 --- */
  .products { height: calc(526 * var(--u)); }
  .products__title {
    top: calc(25 * var(--u));
    left: 0;
    width: calc(320 * var(--u));
    font-size: 30px;
  }
  .products__card { width: calc(146 * var(--u)); height: calc(177 * var(--u)); }
  .c1 { top: calc(109 * var(--u)); left: calc(8 * var(--u)); }
  .c2 { top: calc(110 * var(--u)); left: calc(162 * var(--u)); }
  .c3 { top: calc(316 * var(--u)); left: calc(11 * var(--u)); }
  .c4 { top: calc(317 * var(--u)); left: calc(165 * var(--u)); }
  .i1 { top: calc(72 * var(--u)); left: calc(-2 * var(--u)); width: calc(164 * var(--u)); }
  .i2 { top: calc(79 * var(--u)); left: calc(154 * var(--u)); width: calc(178 * var(--u)); }
  .i3 { top: calc(286 * var(--u)); left: calc(-3 * var(--u)); width: calc(172 * var(--u)); }
  .i4 { top: calc(297 * var(--u)); left: calc(169 * var(--u)); width: calc(143 * var(--u)); }
  .products__label { font-size: 12px; }
  .l1 { top: calc(218 * var(--u)); left: calc(8 * var(--u)); width: calc(146 * var(--u)); }
  .l2 { top: calc(220 * var(--u)); left: calc(162 * var(--u)); width: calc(146 * var(--u)); }
  .l3 { top: calc(418 * var(--u)); left: calc(11 * var(--u)); width: calc(146 * var(--u)); }
  .l4 { top: calc(418 * var(--u)); left: calc(165 * var(--u)); width: calc(146 * var(--u)); }
  .products__btn {
    width: calc(119 * var(--u));
    height: calc(30 * var(--u));
    font-size: 9px;
  }
  .b1 { top: calc(242 * var(--u)); left: calc(21 * var(--u)); }
  .b2 { top: calc(243 * var(--u)); left: calc(175 * var(--u)); }
  .b3 { top: calc(450 * var(--u)); left: calc(24 * var(--u)); }
  .b4 { top: calc(451 * var(--u)); left: calc(178 * var(--u)); }

  /* --- Хиты продаж --- */
  .hits { height: calc(76 * var(--u)); }
  .hits__title {
    top: calc(25 * var(--u));
    left: 0;
    width: calc(320 * var(--u));
    font-size: 30px;
  }

  /* --- Магазин: 2 колонки --- */
  .store__grid {
    width: 100%;
    padding: 0 calc(10 * var(--u));
  }
  .store__search { margin-bottom: calc(24 * var(--u)); }
  .store__search input { display: none; }
  .store__search button { border: none; background: transparent; }
  .store__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(14 * var(--u));
  }
  .store__card {
    min-height: 0;
    padding: calc(14 * var(--u)) calc(12 * var(--u)) calc(16 * var(--u));
    border-radius: calc(16 * var(--u));
  }
  .store__card .pimg { height: calc(110 * var(--u)); margin-bottom: calc(16 * var(--u)); }
  .store__card .pname { font-size: 16px; min-height: 0; }
  .store__card .pprice { margin-top: calc(8 * var(--u)); font-size: 18px; }
  .store__card .pprice .per { font-size: 14px; }
  .store__card .pprice sup { font-size: 9px; }
  .store__card .psku { font-size: 10px; }
  .store__card .popts { margin-top: calc(12 * var(--u)); }
  .store__card .plabel { font-size: 12px; }
  .store__card .chip { font-size: 12px; padding: calc(6 * var(--u)) calc(11 * var(--u)); }
  .store__card .pbottom { margin-top: calc(16 * var(--u)); }
  .store__card .pmore { height: calc(30 * var(--u)); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .store__card .pqty { height: calc(32 * var(--u)); margin-top: calc(7 * var(--u)); }
  .store__card .pqty button { font-size: 16px; }
  .store__card .pqty .q { font-size: 13px; }
  .store__card .pcart { height: calc(36 * var(--u)); font-size: 14px; margin-top: calc(7 * var(--u)); }

  /* --- Почему мы: 7 карточек стеком --- */
  .why { height: calc(1330 * var(--u)); }
  .why::before {
    content: '';
    position: absolute;
    top: calc(-27 * var(--u));
    left: calc(-30 * var(--u));
    width: calc(380 * var(--u));
    height: calc(100 * var(--u));
    background: #fff;
    border-radius: calc(50 * var(--u));
    z-index: 0;
  }
  .why .zb__grid { z-index: 1; }
  .why__title {
    top: calc(11 * var(--u));
    left: 0;
    width: calc(320 * var(--u));
    font-size: 22px;
    z-index: 3;
  }
  .why__bg { display: none; }
  .why__sprout-m {
    display: block;
    top: calc(63 * var(--u));
    left: calc(-55 * var(--u));
    width: calc(430 * var(--u));
    height: calc(272 * var(--u));
    max-width: none;
    object-fit: cover;
    z-index: 1;
  }
  .why::after {
    content: '';
    position: absolute;
    top: calc(300 * var(--u));
    left: 0;
    right: 0;
    bottom: calc(60 * var(--u));
    background: url('../assets/img/why-soil.webp') center / cover;
    z-index: 0;
  }
  .why__card { z-index: 2; }
  .why__strip {
    top: calc(1253 * var(--u));
    left: 0;
    width: calc(320 * var(--u));
    height: calc(77 * var(--u));
    z-index: 1;
  }
  .why__card {
    left: calc(8 * var(--u)) !important;
    width: calc(304 * var(--u));
    height: auto;
    min-height: calc(115 * var(--u));
    padding: calc(11 * var(--u)) calc(13 * var(--u)) calc(12 * var(--u));
    border-radius: calc(15 * var(--u));
    background: rgba(255, 255, 255, 0.15);
  }
  /* порядок оригинала на мобиле; скрытые в оригинале карточки убраны */
  .why__card:nth-of-type(1) { top: calc(287 * var(--u)); }  /* Отсрочка */
  .why__card:nth-of-type(4) { top: calc(422 * var(--u)); }  /* Экстренная */
  .why__card:nth-of-type(5) { top: calc(562 * var(--u)); }  /* Не идеально */
  .why__card:nth-of-type(8) { top: calc(702 * var(--u)); }  /* Договор */
  .why__card:nth-of-type(10) { top: calc(842 * var(--u)); } /* Микроклимат */
  .why__card:nth-of-type(2) { top: calc(982 * var(--u)); }  /* Работаем 363 */
  .why__card:nth-of-type(3) { top: calc(1122 * var(--u)); } /* Новинки */
  .why__card:nth-of-type(6),
  .why__card:nth-of-type(7),
  .why__card:nth-of-type(9) { display: none; }
  .why__card .wt {
    font-size: 14px;
    line-height: 18px;
    color: #9dd06b !important;
    width: calc(250 * var(--u));
  }
  .why__card p br { display: none; }
  .why__card p {
    margin-top: calc(7 * var(--u));
    font-size: 8px;
    line-height: 12px;
    color: #9dd06b !important;
    width: calc(255 * var(--u));
  }
  .why__card .dot {
    top: calc(11 * var(--u));
    width: calc(22 * var(--u));
    height: calc(22 * var(--u));
    background: #9dd06b !important;
  }
  .why__card .dot.right { right: calc(12 * var(--u)); }
  .why__card .dot.left { left: auto; right: calc(12 * var(--u)); }
  .why__card .dot.left ~ .wt,
  .why__card .dot.left ~ p { margin-left: 0; }

  /* --- FAQ --- */
  .faq__grid { min-height: 0; padding-bottom: calc(40 * var(--u)); }
  .faq__title {
    position: static;
    display: block;
    margin: 0 calc(10 * var(--u));
    padding-top: calc(53 * var(--u));
    width: calc(300 * var(--u));
    font-size: 28px;
    line-height: 31px;
  }
  .faq__media {
    position: static;
    margin: calc(20 * var(--u)) calc(10 * var(--u)) 0;
    width: calc(298 * var(--u));
    height: calc(330 * var(--u));
  }
  .faq__list {
    margin: calc(30 * var(--u)) calc(10 * var(--u)) 0;
    width: calc(300 * var(--u));
  }
  .faq__item summary {
    padding: calc(15 * var(--u)) calc(12 * var(--u));
    font-size: 16px;
    line-height: 22px;
  }
  .faq__item summary i { width: calc(32 * var(--u)); height: calc(32 * var(--u)); }
  .faq__body {
    padding: 0 calc(12 * var(--u)) calc(18 * var(--u));
    font-size: 14px;
    line-height: 20px;
    max-width: calc(268 * var(--u));
  }

  /* --- Остались вопросы --- */
  .ask { height: calc(326 * var(--u)); }
  .ask__title {
    top: calc(5 * var(--u));
    left: 0;
    width: calc(320 * var(--u));
    font-size: 27px;
  }
  .ask__form {
    top: calc(63 * var(--u));
    left: calc(10 * var(--u));
    width: calc(298 * var(--u));
    height: auto;
    flex-direction: column;
    gap: calc(14 * var(--u));
  }
  .ask__field {
    flex: none;
    height: calc(64 * var(--u));
    border-radius: calc(18 * var(--u));
  }
  .ask__field input { font-size: 16px; }
  .ask__submit {
    flex: none;
    height: calc(66 * var(--u));
    border-radius: calc(40 * var(--u));
    font-size: 18px;
  }

  /* --- Доставка: одна карточка --- */
  .delivery { height: calc(839 * var(--u)); }
  .delivery__green {
    top: calc(29 * var(--u));
    left: calc(9 * var(--u));
    width: calc(302 * var(--u));
    height: calc(781 * var(--u));
    background: transparent;
    overflow: visible;
  }
  .delivery__green .ellipse, .delivery__green .trunk { display: none; }
  .delivery__green .dt {
    top: calc(16 * var(--u));
    left: calc(14 * var(--u));
    font-size: 25px;
    line-height: 30px;
    color: #19191b;
  }
  .delivery__card {
    top: calc(29 * var(--u));
    left: calc(9 * var(--u));
    width: calc(302 * var(--u));
    height: calc(781 * var(--u));
  }
  .delivery__text {
    left: calc(23 * var(--u));
    width: calc(268 * var(--u));
    font-size: 12px;
    line-height: 16px;
  }
  .t1 { top: calc(139 * var(--u)); }
  .t2 { top: calc(213 * var(--u)); font-size: 12px; }
  .t3 { top: calc(280 * var(--u)); }
  .t4 { top: calc(385 * var(--u)); }
  .t5 { top: calc(467 * var(--u)); }
  .delivery__line { left: calc(23 * var(--u)); width: calc(220 * var(--u)); }
  .l1 { top: calc(195 * var(--u)); }
  .l2 { top: calc(366 * var(--u)); }
  .delivery__van {
    top: calc(507 * var(--u));
    left: calc(-120 * var(--u));
    width: calc(362 * var(--u));
  }

  /* --- Контакты: карта сверху --- */
  .contacts { height: calc(620 * var(--u)); }
  .contacts__map {
    top: calc(20 * var(--u));
    left: calc(10 * var(--u));
    width: calc(300 * var(--u));
    height: calc(330 * var(--u));
    border-radius: calc(20 * var(--u));
  }
  .contacts__addr {
    top: calc(388 * var(--u));
    left: calc(10 * var(--u));
    font-size: 13px;
  }
  .contacts__phone {
    top: calc(417 * var(--u));
    left: calc(10 * var(--u));
    font-size: 13px;
  }
  .contacts__mail {
    top: calc(446 * var(--u));
    left: calc(12 * var(--u));
    font-size: 13px;
  }
  .contacts__logo {
    top: calc(384 * var(--u));
    left: calc(218 * var(--u));
    width: calc(89 * var(--u));
  }
  .contacts__soc { top: calc(485 * var(--u)); width: calc(26 * var(--u)); height: calc(26 * var(--u)); }
  .s1 { left: calc(10 * var(--u)); }
  .s2 { left: calc(40 * var(--u)); }
  .s3 { left: calc(70 * var(--u)); }
  .contacts__policy { top: calc(535 * var(--u)); left: calc(10 * var(--u)); font-size: 10px; }
  .contacts__copy { top: calc(557 * var(--u)); left: calc(10 * var(--u)); font-size: 10px; }
}
