/* ===== Variables (from mockup) ===== */
:root {
  --color-primary: #35C2FF;
  --color-primary-bright: #5DD0FF;
  --color-primary-dark: #00A8E0;
  --color-hero: #0079C1;
  --color-primary-bg: #EBF9FF;
  --color-primary-bg-input: #F0F9FF;
  --color-primary-border: #A8E4FF;
  --color-text: #4A4A4A;
  --color-text-dark: #333333;
  --color-text-muted: #9B9B9B;
  --color-text-light: #555555;
  --color-white: #FFFFFF;
  --color-bg-light: #F2F1EC;
  --color-bg-blue: #E1F3FF;
  --color-footer: #2B2B2B;
  --gray-passive: #BDBDBD;

  --font: 'Montserrat', sans-serif;
  --font-family: 'Montserrat', sans-serif;
  --main-blue: #35C2FF;
  --container: 1200px;
  --container-form: 520px;
  --container-hero: 1170px;
  --section-pad: 88px;
  --hero-header-height: 70px;
  --hero-blue-offset: 76px;
  --hero-photo-width: min(1375px, 71.61vw);
  --hero-photo-height: calc(var(--hero-photo-width) * 631 / 1375);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px rgba(53, 194, 255, 0.18);
  --transition: 0.25s ease;
}

/* ===== Reset ===== */
.vending-page,
.vending-page *,
.vending-page::before,
.vending-page *::before,
.vending-page::after,
.vending-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vending-page {
  scroll-behavior: smooth;
  overflow-x: clip;
}

.vending-page {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.vending-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.vending-page a {
  color: inherit;
  text-decoration: none;
}

.vending-page ul {
  list-style: none;
}

.vending-page button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

.vending-page strong {
  font-weight: 600;
}

/* ===== Layout ===== */
.vending-page .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.vending-page .container--form {
  max-width: var(--container-form);
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.vending-page .section {
  padding: var(--section-pad) 0;
}

.vending-page .section-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--main-blue);
  margin-bottom: 44px;
}

.vending-page .section-title--center {
  text-align: center;
}

.vending-page .section-title--contact {
  margin-bottom: 14px;
}

/* Neon icons on black PNG — lighten removes black bg */
.vending-page .img-neon {
  mix-blend-mode: lighten;
  object-fit: contain;
}

/* ===== Buttons ===== */
.vending-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.vending-page .btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.vending-page .btn--primary:hover {
  background: var(--color-primary-dark);
}

.vending-page .btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
}

.vending-page .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.vending-page .btn--sm {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ===== Header (Figma: 1920×70) ===== */
.vending-page .header {
  position: relative;
  z-index: 10;
  background: var(--color-white);
  height: 70px;
}

.vending-page .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
  max-width: 1280px;
}

.vending-page .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 137px;
  height: 46px;
}

.vending-page .logo__img {
  width: 137px;
  height: 46px;
  display: block;
}

.vending-page .logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.vending-page .logo__brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.vending-page .logo__tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.vending-page .logo--footer .logo__brand,
.vending-page .logo--footer .logo__tagline {
  color: var(--color-white);
}

.vending-page .logo--footer .logo__tagline {
  opacity: 0.85;
}

.vending-page .logo--footer .logo__img {
  filter: brightness(0) invert(0.7686);
  width: 137px;
  height: 46px;
}

.vending-page .nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.vending-page .nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.vending-page .nav__link {
  position: relative;
  display: inline-block;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #5495C2;
  padding-bottom: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}

.vending-page .nav__link:hover {
  color: #3d7aa3;
}

.vending-page .nav__link--active {
  font-weight: 700;
  color: #5495C2;
}

.vending-page .nav__link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #5495C2;
}

.vending-page .nav__item--dropdown .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vending-page .nav__chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 5px solid #5495C2;
  margin-top: 2px;
}

.vending-page .header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.vending-page .btn--header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 151px;
  height: 40px;
  padding: 0 16px;
  background: #35C2FF;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.vending-page .btn--header-login:hover {
  background: #1ab0f0;
}

.vending-page .header__role-wrap {
  position: relative;
}

.vending-page .header__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  min-width: 178px;
  height: 40px;
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #5495C2;
  background: var(--color-white);
  border-radius: 8px;
  border: 1.5px solid #5495C2;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.vending-page .header__role-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #5495C2;
  margin-top: 2px;
  transition: transform var(--transition);
}

.vending-page .header__role-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  min-width: 280px;
  padding: 16px 20px 18px;
  margin-top: 0;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(72, 72, 72, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.vending-page .header__role-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.vending-page .header__role-wrap:hover .header__role,
.vending-page .header__role-wrap:focus-within .header__role {
  color: var(--color-white);
  background: #5495C2;
  border-color: #5495C2;
}

.vending-page .header__role-wrap:hover .header__role-chevron,
.vending-page .header__role-wrap:focus-within .header__role-chevron {
  border-top-color: transparent;
  border-bottom: 6px solid var(--color-white);
  margin-top: -2px;
}

.vending-page .header__role-wrap:hover .header__role-menu,
.vending-page .header__role-wrap:focus-within .header__role-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(8px);
}

.vending-page .header__role-menu-title {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9B9B9B;
}

.vending-page .header__role-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.vending-page .header__role-link {
  display: block;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #484848;
  transition: color var(--transition);
}

.vending-page .header__role-link:hover {
  color: #5495C2;
}

.vending-page .burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.vending-page .burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-dark);
}

/* ===== Hero (Figma 1920: photo 1375×631 @x278, text @x375 left, buttons centered) ===== */
.vending-page .hero {
  position: relative;
  background: var(--color-white);
  padding-bottom: 0;
  overflow: hidden;
  --hero-side: calc((100% - var(--hero-photo-width)) / 2);
  /* высота = фото, текст лежит поверх кадра */
  min-height: calc(var(--hero-blue-offset) + var(--hero-photo-height));
}

.vending-page .hero__blue {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--hero-blue-offset);
  bottom: 0;
  background: var(--color-hero);
  z-index: 0;
}

.vending-page .hero__media {
  position: relative;
  z-index: 1;
  width: var(--hero-photo-width);
  max-width: 100%;
  height: var(--hero-photo-height);
  margin: 0 auto;
  line-height: 0;
  overflow: hidden;
  background: var(--color-hero);
}

.vending-page .hero__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Как в макете: мягкий уход фото в синий снизу (под текст), без боковых «масок» */
.vending-page .hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--color-hero) 0%,
    rgba(0, 121, 193, 0.72) 28%,
    rgba(0, 121, 193, 0) 62%
  );
}

.vending-page .hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  display: block;
  height: auto;
  overflow: visible;
  transform-origin: center center;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55));
  /* не даём вылезти за экран на узких десктопах */
  max-width: min(92px, 8vw);
}

/* Позиции в боковом поле — ближе к фото / центру */
.vending-page .hero__deco--1 {
  left: max(8px, calc(var(--hero-side) * 0.78));
  top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.4);
  width: clamp(32px, 2.4vw, 46px);
  transform: scaleX(-1) rotate(15deg);
  opacity: 0.95;
}

.vending-page .hero__deco--4 {
  left: max(8px, calc(var(--hero-side) * 0.9));
  top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.72);
  width: clamp(38px, 2.9vw, 56px);
  transform: rotate(358deg);
  opacity: 0.95;
}

.vending-page .hero__deco--3 {
  right: max(8px, calc(var(--hero-side) * 0.88));
  top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.08);
  width: clamp(28px, 2.2vw, 42px);
  transform: rotate(283deg);
  opacity: 0.92;
}

.vending-page .hero__deco--2 {
  right: max(8px, calc(var(--hero-side) * 0.62));
  top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.3);
  width: clamp(48px, 3.9vw, 74px);
  max-width: min(92px, 10vw);
  transform: rotate(332deg);
  opacity: 0.98;
}

.vending-page .hero__deco--5 {
  right: max(8px, calc(var(--hero-side) * 0.8));
  top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.66);
  width: clamp(34px, 2.6vw, 50px);
  transform: rotate(337deg);
  opacity: 0.94;
}

/* Текст строго внутри ширины фото, в нижней части кадра */
.vending-page .hero__wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(var(--hero-photo-width), 100%);
  max-width: var(--hero-photo-width);
  box-sizing: border-box;
  padding: 0 clamp(20px, 3.2vw, 56px);
  top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.46);
  margin: 0;
  bottom: auto;
}

.vending-page .hero__content {
  text-align: left;
  width: 100%;
  max-width: 100%;
}

.vending-page .hero__title {
  font-family: var(--font);
  font-size: clamp(18px, 1.9vw, 36px);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: left;
  line-height: 1.22;
  margin: 0 0 clamp(12px, 1.4vw, 22px);
  max-width: 100%;
}

.vending-page .hero__subtitle {
  font-family: var(--font);
  font-size: clamp(12px, 1.1vw, 20px);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: left;
  line-height: 1.35;
  margin: 0 0 clamp(16px, 2.4vw, 40px);
  max-width: 100%;
}

.vending-page .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-top: 0;
}

.vending-page .btn--hero-outline,
.vending-page .btn--hero-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 0;
  height: 40px;
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.16px;
  white-space: nowrap;
}

.vending-page .btn--hero-outline {
  width: 254px;
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.vending-page .btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vending-page .btn--hero-fill {
  width: 228px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.vending-page .btn--hero-fill:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.vending-page .benefits.section {
  padding-top: 64px;
}

.vending-page .benefits .section-title {
  text-align: left;
}

.vending-page .benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 26px;
}

.vending-page .benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow: visible;
}

.vending-page .benefits__icon {
  position: relative;
  flex-shrink: 0;
  width: 77px;
  height: 75px;
  background: none;
  border-radius: 0;
  overflow: visible;
  display: block;
  z-index: 0;
}

.vending-page .benefits__icon::before {
  content: '';
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #E8F6FC;
  left: -12px;
  top: -30px;
  z-index: -1;
}

.vending-page .benefits__icon img {
  position: relative;
  z-index: 1;
  width: 77px;
  height: 75px;
  object-fit: contain;
  object-position: center bottom;
}

.vending-page .benefits__text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-dark);
  padding-top: 10px;
}

.vending-page .benefits__text strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

/* ===== How it works ===== */
.vending-page .how-it-works .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.vending-page .how-it-works__label {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: #484848;
  margin-bottom: 14px;
}

.vending-page .how-it-works {
  overflow-x: clip;
}

.vending-page .steps {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 44px;
  max-width: 100%;
}

/* На десктопе ряды «прозрачны» — всё в одну линию, стрелки между рядами тоже горизонтальные */
.vending-page .steps__row {
  display: contents;
}

.vending-page .steps__item {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.vending-page .steps__item--last {
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
}

.vending-page .steps__num {
  font-family: var(--font-family);
  font-size: 96px;
  font-weight: 700;
  color: #C8EEFF;
  line-height: 1.22;
  flex-shrink: 0;
}

.vending-page .steps__item--last .steps__num {
  position: relative;
  z-index: 1;
  color: var(--main-blue);
}

.vending-page .steps__text {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: #484848;
  max-width: 155px;
  line-height: 1.22;
}

.vending-page .steps__item--last .steps__text {
  position: relative;
  z-index: 1;
  max-width: 95px;
}

.vending-page .steps__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  flex-shrink: 0;
  line-height: 0;
}

.vending-page .steps__arrow svg {
  display: block;
  width: 36px;
  height: 14px;
}

.vending-page .steps__end-icon {
  position: relative;
  margin-left: -30px;
  flex-shrink: 0;
  width: 131px;
  height: 129px;
  background: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.vending-page .steps__end-icon::before {
  content: '';
  position: absolute;
  width: 131px;
  height: 129px;
  border-radius: 50%;
  background: #E9F8FF;
  left: 0;
  top: 0;
  z-index: -1;
}

.vending-page .steps__end-icon img {
  position: relative;
  z-index: 2;
  width: 98px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.vending-page .how-it-works__columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 72px;
  align-items: start;
}

.vending-page .how-it-works__block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow: visible;
}

.vending-page .how-it-works__block-icon {
  position: relative;
  flex-shrink: 0;
  width: 131px;
  height: 129px;
  background: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.vending-page .how-it-works__block-icon::before {
  content: '';
  position: absolute;
  width: 131px;
  height: 129px;
  border-radius: 50%;
  background: #E9F8FF;
  left: 0;
  top: 0;
  z-index: -1;
}

.vending-page .how-it-works__block-icon img {
  position: relative;
  z-index: 1;
  width: 110px;
  height: auto;
  max-height: 112px;
  object-fit: contain;
  object-position: center;
}

.vending-page .how-it-works .check-list {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  gap: 14px;
  padding-top: 6px;
}

.vending-page .how-it-works .check-list__item {
  font-size: 14px;
  line-height: 1.45;
  gap: 12px;
}

.vending-page .check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.vending-page .check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-dark);
}

.vending-page .check-list__icon-wrap {
  flex-shrink: 0;
  width: 45px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.vending-page .check-list__icon {
  width: 45px;
  height: 28px;
  object-fit: contain;
}

.vending-page .check-list--large {
  gap: 18px;
}

.vending-page .check-list--large .check-list__item {
  font-size: 15px;
  color: #555555;
}

.vending-page .check-list--large .check-list__icon-wrap {
  width: 45px;
  height: 28px;
}

.vending-page .check-list--large .check-list__icon {
  width: 45px;
  height: 28px;
}

/* ===== Product Slider ===== */
.vending-page .product-slider .section-title {
  text-align: left;
}

.vending-page .slider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  position: relative;
}

.vending-page .slider__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  touch-action: pan-y;
  cursor: grab;
}

.vending-page .slider__viewport.is-dragging {
  cursor: grabbing;
}

.vending-page .slider__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.vending-page .slider__track.is-swiping {
  transition: none;
}

.vending-page .slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Десктоп: стрелки сбоку от карточки */
.vending-page .slider__btn {
  flex-shrink: 0;
  position: static;
  transform: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E9F8FF;
  color: #484848;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #C8EEFF;
  box-shadow: 0 4px 16px rgba(0, 121, 193, 0.12);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.vending-page .slider__btn:hover {
  background: #C8EEFF;
  color: #484848;
  box-shadow: 0 6px 20px rgba(0, 121, 193, 0.18);
}

.vending-page .product-card {
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
  min-height: 480px;
  width: 100%;
  padding: 32px 40px 36px;
  background: #E9F8FF;
  border: 1.5px solid #C8EEFF;
  border-radius: 16px;
  box-sizing: border-box;
}

.vending-page .product-card__image {
  background: var(--color-white);
  border: 1px solid #C8EEFF;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-height: 100%;
  overflow: hidden;
  align-self: stretch;
}

.vending-page .product-card__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.vending-page .product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
  padding-top: 8px;
  min-width: 0;
}

.vending-page .product-card__title {
  width: 100%;
  margin: 0 0 22px;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #484848;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: right;
}

.vending-page .product-card__label {
  width: 100%;
  margin: 0 0 8px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
  color: #35C2FF;
}

.vending-page .product-card__desc {
  width: 100%;
  margin: 0 0 22px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #484848;
}

.vending-page .product-card__dash-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
}

.vending-page .product-card__dash-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #484848;
}

.vending-page .product-card__dash-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #484848;
}

.vending-page .product-card__dash-list strong,
.vending-page .product-card__check-list strong {
  font-weight: 700;
}

.vending-page .product-card__check-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
}

.vending-page .product-card__check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #484848;
}

.vending-page .product-card__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vending-page .product-card__check img {
  width: 20px;
  height: 20px;
  display: block;
}

.vending-page .product-card__pricing {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin: 0 0 28px;
}

.vending-page .pricing-col__title {
  margin: 0 0 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--gray-passive);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vending-page .pricing-col__row {
  margin: 0 0 6px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #484848;
}

.vending-page .pricing-col__row strong {
  color: #35C2FF;
  font-weight: 700;
}

.vending-page .pricing-col__total {
  margin: 10px 0 0;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #484848;
}

.vending-page .pricing-col__total strong {
  font-size: 24px;
  font-weight: 700;
  color: #35C2FF;
}

.vending-page .pricing-col__note {
  margin: 10px 0 0;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #484848;
}

.vending-page .product-card__btn {
  width: 228px;
  height: 40px;
  min-width: 0;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 0;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* ===== Stats ===== */
.vending-page .stats .section-title {
  text-align: left;
}

.vending-page .stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 100px;
}

.vending-page .stats__item {
  text-align: center;
}

.vending-page .stats__value {
  font-size: 72px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.vending-page .stats__desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== We take care (title on same .container grid) ===== */
.vending-page .we-take-care {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #E0DACB 0%, #DCE4E2 100%);
  min-height: 386px;
}

.vending-page .we-take-care__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  overflow: hidden;
}

.vending-page .we-take-care__image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  max-width: 399px;
  background: linear-gradient(90deg, #DFDDD2 0%, rgba(223, 221, 210, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.vending-page .we-take-care__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.vending-page .we-take-care__container {
  position: relative;
  z-index: 2;
  min-height: 386px;
  display: flex;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 40px;
}

.vending-page .we-take-care__content {
  width: 100%;
  max-width: 535px;
}

.vending-page .we-take-care__content .section-title {
  margin-bottom: 48px;
  color: var(--color-hero);
}

.vending-page .we-take-care .check-list--large {
  gap: 14px;
}

.vending-page .we-take-care .check-list--large .check-list__item {
  font-size: 16px;
  font-weight: 400;
  color: #484848;
  line-height: 1.22;
  gap: 14px;
}

.vending-page .we-take-care .check-list--large .check-list__icon-wrap {
  width: 45px;
  height: 28px;
}

.vending-page .we-take-care .check-list--large .check-list__icon {
  width: 45px;
  height: 28px;
}

/* ===== FAQ (карточки, раскрыты по умолчанию) ===== */
.vending-page .faq {
  padding-bottom: 48px;
}

.vending-page .faq .section-title {
  text-align: left;
  margin-bottom: 36px;
}

.vending-page .faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0;
}

.vending-page .faq__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--color-white);
  border: 1.5px solid #D8EFFA;
  border-left: 3px solid var(--color-primary);
  transition: border-color var(--transition),
              box-shadow var(--transition),
              background var(--transition),
              transform var(--transition);
}

.vending-page .faq__item:hover {
  border-color: var(--color-primary);
  border-left-color: var(--color-primary-dark);
  background: linear-gradient(180deg, var(--color-white) 0%, #F4FBFE 100%);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.vending-page .faq__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E9F8FF;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition);
}

.vending-page .faq__item:hover .faq__num {
  background: var(--color-primary);
  color: var(--color-white);
}

.vending-page .faq__body {
  min-width: 0;
}

.vending-page .faq__q {
  margin: 0 0 10px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-dark);
}

.vending-page .faq__a {
  margin: 0;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #484848;
}

.vending-page .faq__item--wide {
  grid-column: 1 / -1;
}

/* ===== Contact (Figma: title left, fields 769×73 centered) ===== */
.vending-page .contact {
  padding: 56px 0 76px;
  background: var(--color-white);
}

.vending-page .contact .section-title--contact {
  text-align: left;
  margin-bottom: 25px;
}

.vending-page .contact__subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: #484848;
  margin-bottom: 35px;
  line-height: 1.22;
  text-align: left;
  max-width: 900px;
}

.vending-page .contact__subtitle strong {
  font-weight: 700;
}

.vending-page .contact__form {
  display: flex;
  flex-direction: column;
  width: 769px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.vending-page .contact__input {
  width: 100%;
  height: 73px;
  padding: 0 24px;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  color: #484848;
  background: #E9F8FF;
  border: none;
  border-bottom: 2px solid var(--main-blue);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
}

.vending-page .contact__input + .contact__input {
  margin-top: 24px;
}

.vending-page .contact__input::placeholder {
  color: #484848;
  opacity: 1;
}

.vending-page .contact__input:focus {
  border-bottom-color: var(--color-primary-bright);
}

.vending-page .btn--submit {
  width: 100%;
  border-radius: 0;
  padding: 0 24px;
  height: 60px;
  margin-top: 15px;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

/* ===== Quick Contact (Figma: 1170×241) ===== */
.vending-page .quick-contact {
  position: relative;
  background: var(--color-white);
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.vending-page .quick-contact .container {
  position: relative;
}

.vending-page .quick-contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  min-height: 241px;
  padding: 39px 40px 40px 26px;
  background:
    linear-gradient(90deg, transparent 35%, rgba(201, 239, 255, 0.65) 100%),
    linear-gradient(180deg, #C9EFFF 0%, #C9EFFF 60%, #FFFFFF 100%);
  overflow: hidden;
}

.vending-page .quick-contact__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-left: 0;
}

.vending-page .quick-contact__envelope {
  width: 26px;
  height: 20px;
  flex-shrink: 0;
}

.vending-page .quick-contact__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #5495C2;
  margin: 0;
}

.vending-page .quick-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  max-width: 900px;
  padding-left: 50px;
}

.vending-page .quick-contact__main {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: #484848;
  margin: 0;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.vending-page .quick-contact__main strong {
  font-weight: 700;
}

.vending-page .quick-contact__main a {
  color: #484848;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.vending-page .quick-contact__main a:hover {
  color: var(--color-primary);
}

.vending-page .quick-contact__sub {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: #484848;
  line-height: 1.22;
  letter-spacing: 0.01em;
  margin: 2px 0 0;
}

.vending-page .quick-contact__deco {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(2deg);
  width: clamp(280px, 38vw, 456px);
  height: auto;
  display: block;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: lighten;
  overflow: visible;
}

/* ===== Footer ===== */
.vending-page .footer {
  position: relative;
  background: var(--color-footer);
  color: #C4C4C4;
  padding: 75px 0 28px;
  overflow: hidden;
}

.vending-page .footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/footer/footer-bg.png') center/cover no-repeat;
}

.vending-page .footer__content {
  position: relative;
  z-index: 1;
}

.vending-page .footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr 1fr 1.15fr;
  gap: 24px 28px;
  align-items: start;
  padding-bottom: 36px;
}

.vending-page .footer__brand {
  display: flex;
  align-items: flex-start;
}

.vending-page .footer__col {
  text-align: right;
}

.vending-page .footer__heading {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: #C4C4C4;
  text-align: right;
}

.vending-page .footer__links {
  text-align: right;
}

.vending-page .footer__links li {
  margin-bottom: 8px;
}

.vending-page .footer__links a {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #C4C4C4;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
}

.vending-page .footer__links a:hover {
  opacity: 0.8;
}

.vending-page .footer__col--contacts .footer__links {
  margin-bottom: 16px;
}

.vending-page .footer__shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 36px;
  padding: 0 18px;
  background: #5495C2;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition);
}

.vending-page .footer__shop:hover {
  background: #3d7aa3;
}

.vending-page .footer__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(196, 196, 196, 0.28);
}

.vending-page .footer__copy {
  margin: 0;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: #C4C4C4;
  white-space: nowrap;
}

.vending-page .footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: auto;
}

.vending-page .footer__legal a {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: #C4C4C4;
  text-decoration: none;
  transition: opacity var(--transition);
}

.vending-page .footer__legal a:hover {
  opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  :root {
    --hero-photo-width: min(1375px, 78vw);
    --hero-blue-offset: 70px;
  }

  .vending-page .hero__deco {
    max-width: min(72px, 7vw);
  }

  .vending-page .hero__deco--1 { width: 34px; }
  .vending-page .hero__deco--4 { width: 42px; }
  .vending-page .hero__deco--3 { width: 30px; }
  .vending-page .hero__deco--2 { width: 56px; max-width: min(72px, 9vw); }
  .vending-page .hero__deco--5 { width: 36px; }

  /* Планшет: 2 колонки, без стрелок, по центру */
  .vending-page .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: visible;
  }

  .vending-page .steps__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    column-gap: 32px;
    row-gap: 20px;
    width: 100%;
    max-width: 760px;
  }

  .vending-page .steps__row--last {
    grid-template-columns: 1fr;
  }

  .vending-page .steps__row .steps__item {
    min-width: 0;
    justify-content: center;
    gap: 10px;
  }

  .vending-page .steps__arrow,
.vending-page .steps__arrow--down {
    display: none;
  }

  .vending-page .steps__num {
    font-size: clamp(52px, 6vw, 72px);
  }

  .vending-page .steps__text {
    max-width: none;
    font-size: 15px;
  }

  .vending-page .steps__item--last .steps__text {
    max-width: none;
  }

  .vending-page .steps__item--last {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vending-page .steps__end-icon {
    margin-left: 4px;
    width: 88px;
    height: 88px;
  }

  .vending-page .steps__end-icon::before {
    width: 88px;
    height: 88px;
  }

  .vending-page .steps__end-icon img {
    width: 72px;
    height: auto;
  }
}

@media (max-width: 1100px) {
  .vending-page .nav__list {
    gap: 16px;
  }

  .vending-page .product-card {
    grid-template-columns: minmax(200px, 36%) 1fr;
    gap: 24px;
    padding: 28px 32px;
    min-height: 0;
  }

  .vending-page .product-card__image {
    min-height: 280px;
    max-height: 360px;
    padding: 12px;
  }

  .vending-page .slider {
    gap: 12px;
  }

  .vending-page .slider__btn {
    width: 44px;
    height: 44px;
  }

  .vending-page .product-card__title {
    font-size: 18px;
  }

  .vending-page .pricing-col__title {
    font-size: 28px;
  }

  .vending-page .pricing-col__total strong {
    font-size: 20px;
  }

  .vending-page .we-take-care__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .vending-page .we-take-care__image {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .vending-page .we-take-care__image::before {
    width: 100%;
    height: 80px;
    bottom: auto;
    background: linear-gradient(180deg, #DFDDD2 0%, rgba(223, 221, 210, 0) 100%);
  }

  .vending-page .we-take-care {
    display: flex;
    flex-direction: column;
  }

  .vending-page .we-take-care__image {
    order: -1;
  }
}

@media (max-width: 992px) {
  .vending-page .faq__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vending-page .faq__item--wide {
    grid-column: auto;
  }

  :root {
    --section-pad: 64px;
    --hero-photo-width: min(1375px, 88vw);
    --hero-blue-offset: 64px;
  }

  .vending-page .hero__deco--1 {
    width: 28px;
    top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.38);
  }

  .vending-page .hero__deco--4 {
    width: 34px;
    top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.7);
  }

  .vending-page .hero__deco--3 {
    width: 24px;
    opacity: 0.75;
  }

  .vending-page .hero__deco--2 {
    width: 44px;
    top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.28);
  }

  .vending-page .hero__deco--5 {
    width: 30px;
    top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.64);
  }

  .vending-page .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    justify-content: flex-start;
  }

  .vending-page .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .vending-page .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .vending-page .header__role-wrap {
    display: none;
  }

  .vending-page .burger {
    display: flex;
  }

  .vending-page .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vending-page .how-it-works__columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vending-page .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 20px 28px;
    gap: 20px;
  }

  .vending-page .product-card__image {
    min-height: 220px;
    max-height: 280px;
    width: 100%;
    padding: 20px;
  }

  /* Мобильные: стрелки под карточкой */
  .vending-page .slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'viewport viewport'
      'prev next';
    gap: 16px 12px;
    align-items: center;
    justify-items: center;
  }

  .vending-page .slider__viewport {
    grid-area: viewport;
    width: 100%;
  }

  .vending-page .slider__btn--prev {
    grid-area: prev;
    justify-self: end;
  }

  .vending-page .slider__btn--next {
    grid-area: next;
    justify-self: start;
  }

  .vending-page .slider__btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .vending-page .product-card__image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 240px;
    margin: 0 auto;
    object-fit: contain;
  }

  .vending-page .product-card__title {
    text-align: left;
    font-size: 16px;
  }

  .vending-page .we-take-care__content {
    max-width: none;
  }

  .vending-page .we-take-care__content .section-title {
    margin-bottom: 28px;
  }

  .vending-page .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    text-align: right;
  }

  .vending-page .footer__brand {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .vending-page .footer__col,
.vending-page .footer__heading,
.vending-page .footer__links {
    text-align: right;
  }

  .vending-page .footer__bottom {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
    text-align: right;
  }

  .vending-page .footer__legal {
    margin-left: 0;
    width: 100%;
    order: 3;
    justify-content: flex-end;
    text-align: right;
  }

  .vending-page .footer__copy {
    width: 100%;
    text-align: right;
  }

  .vending-page .container--form {
    margin: 0 auto;
  }

  .vending-page .contact__form {
    width: 100%;
  }

  .vending-page .contact__input {
    height: 60px;
    font-size: 16px;
    padding: 0 16px;
  }

  .vending-page .btn--submit {
    height: 52px;
    font-size: 18px;
  }

  .vending-page .quick-contact__header {
    gap: 18px;
  }

  .vending-page .quick-contact__grid {
    padding-left: 0;
    max-width: none;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .vending-page .faq__item {
    gap: 16px;
    padding: 22px 20px;
  }

  .vending-page .faq__num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  :root {
    --hero-photo-width: 100%;
    --hero-photo-height: max(380px, 64vw);
    --hero-blue-offset: 56px;
  }

  .vending-page .hero {
    padding-bottom: 48px;
    min-height: calc(var(--hero-blue-offset) + var(--hero-photo-height) + 48px);
  }

  .vending-page .hero__media {
    width: 100%;
    max-width: 100%;
  }

  /* На мобильных боковых полей нет — прячем декор */
  .vending-page .hero__deco {
    display: none;
  }

  .vending-page .hero__blue {
    top: 56px;
  }

  .vending-page .hero__wrap {
    width: 100%;
    max-width: 100%;
    top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.36);
    padding: 0 16px 8px;
  }

  .vending-page .hero__title {
    font-size: clamp(16px, 4.4vw, 24px);
    margin-bottom: 12px;
  }

  .vending-page .hero__subtitle {
    margin-bottom: 16px;
    font-size: clamp(11px, 3vw, 14px);
  }

  .vending-page .hero__buttons {
    gap: 12px;
  }

  .vending-page .btn--hero-outline,
.vending-page .btn--hero-fill {
    width: 100%;
    max-width: 254px;
    height: 40px;
  }

  .vending-page .benefits__grid {
    grid-template-columns: 1fr;
  }

  /* Мобильный: одна колонка, без стрелок, по центру */
  .vending-page .steps {
    gap: 12px;
    align-items: center;
  }

  .vending-page .steps__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .vending-page .steps__row--last {
    display: flex;
    align-items: center;
  }

  .vending-page .steps__row .steps__item {
    width: auto;
    max-width: 100%;
    justify-content: center;
    gap: 12px;
    padding: 4px 0;
  }

  .vending-page .steps__arrow,
.vending-page .steps__arrow--down {
    display: none;
  }

  .vending-page .steps__num {
    font-size: 48px;
    min-width: 0.9em;
    line-height: 1;
    text-align: center;
  }

  .vending-page .steps__text {
    font-size: 15px;
    line-height: 1.3;
    text-align: left;
  }

  .vending-page .steps__item--last {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vending-page .steps__end-icon {
    margin-left: 0;
    margin-top: 8px;
    width: 72px;
    height: 72px;
  }

  .vending-page .steps__end-icon::before {
    width: 72px;
    height: 72px;
  }

  .vending-page .steps__end-icon img {
    width: 56px;
  }

  .vending-page .stats__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vending-page .stats__value {
    font-size: 52px;
  }

  .vending-page .product-card__pricing {
    grid-template-columns: 1fr;
  }

  .vending-page .quick-contact {
    padding: 0;
  }

  .vending-page .quick-contact__inner {
    padding: 28px 24px 36px;
    min-height: 0;
  }

  .vending-page .quick-contact__header {
    margin-bottom: 28px;
    gap: 16px;
  }

  .vending-page .quick-contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
    max-width: none;
  }

  .vending-page .quick-contact__main {
    font-size: 18px;
  }

  .vending-page .quick-contact__deco {
    width: 180px;
    opacity: 0.4;
    right: 0;
  }

  .vending-page .contact {
    padding: 40px 0 48px;
  }

  .vending-page .contact__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .vending-page .contact__input {
    height: 56px;
    font-size: 15px;
  }

  .vending-page .contact__input + .contact__input {
    margin-top: 16px;
  }

  .vending-page .btn--submit {
    height: 48px;
    font-size: 16px;
    margin-top: 12px;
  }

  .vending-page .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .vending-page .footer__brand {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .vending-page .footer__col,
.vending-page .footer__heading,
.vending-page .footer__links,
.vending-page .footer__copy {
    text-align: right;
  }

  .vending-page .footer__bottom {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  .vending-page .footer__legal {
    justify-content: flex-end;
  }

  .vending-page .product-card__image {
    min-height: 200px;
    max-height: 240px;
  }

  .vending-page .product-card__image img {
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .vending-page .faq__item {
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px;
  }

  .vending-page .faq__q {
    font-size: 15px;
  }

  .vending-page .faq__a {
    font-size: 14px;
  }

  .vending-page .header,
.vending-page .header__inner {
    height: 64px;
  }

  .vending-page .logo,
.vending-page .logo__img {
    width: 110px;
    height: auto;
  }

  .vending-page .btn--header-login {
    width: auto;
    min-width: 120px;
    font-size: 14px;
    height: 40px;
  }

  .vending-page .hero__blue {
    top: 48px;
  }

  :root {
    --hero-blue-offset: 48px;
    --hero-photo-height: max(360px, 72vw);
  }

  .vending-page .hero {
    padding-bottom: 56px;
    min-height: calc(var(--hero-blue-offset) + var(--hero-photo-height) + 56px);
  }

  .vending-page .hero__wrap {
    top: calc(var(--hero-blue-offset) + var(--hero-photo-height) * 0.32);
    padding: 0 14px 12px;
  }

  .vending-page .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .vending-page .section-title,
.vending-page .quick-contact__title {
    font-size: clamp(18px, 4.5vw, 24px);
    margin-bottom: 32px;
  }

  .vending-page .how-it-works__block {
    flex-direction: column;
    align-items: flex-start;
  }

  .vending-page .product-card__btn {
    width: 100%;
  }
}
