@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;700&display=swap');

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/oswald-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/oswald-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Layout — фіксований макет 375px (десктоп / планшет) */
  --page-width: 375px;
  --page-padding: 15px;
  --section-padding-y: 48px;
  --section-padding-x: 20px;

  /* Colors */
  --color-white: #fff;
  --color-text: #111;
  --color-text-muted: #cecece;
  --color-dark: #24221d;
  --color-dark-deep: #110e0d;
  --color-black: #010101;
  --color-video-bg: #0d0300;
  --color-dot-inactive: #333;
  --color-dark-gray: #3b3a3a;
  --color-red: #e50000;
  --color-red-hover: #c40000;
  --color-red-border: #e94f37;
  --color-accent-red: #ff383c;
  --color-yellow: #fc0;
  --color-text-dark: #0c0a04;
  --color-border-dark: rgba(12, 10, 4, 0.15);
  --color-border-light: rgba(255, 255, 255, 0.2);
  --color-brown: #5d1f16;
  --color-tags-bg: rgba(255, 255, 255, 0.15);
  --gradient-price: linear-gradient(to top, var(--color-dark-gray), var(--color-dark-deep));
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-family-display: 'Oswald', sans-serif;
  --font-family-condensed: 'Roboto Condensed', sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 26px;
  --text-h4: 24px;
  --text-h5: 20px;
  --text-h6: 18px;
  --text-h2: 44px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-normal: 1.5;
  --lh-heading: 1.2;
  --lh-h4: 1.3;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  /* Spacing */
  --gap-xs: 6px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 20px;
  --gap-xl: 24px;
  --gap-2xl: 48px;
  --gap-3xl: 64px;
  --gap-section: 36px;
}

/* Мобільна версія: fluid typography + відступи (320–430px) */
@media (max-width: 480px) {
  :root {
    --page-width: 100%;
    --page-padding: clamp(12px, 4vw, 20px);
    --section-padding-y: clamp(40px, 12vw, 48px);
    --section-padding-x: clamp(16px, 5vw, 20px);

    --text-xs: clamp(11px, 3.2vw, 12px);
    --text-sm: clamp(13px, 3.8vw, 14px);
    --text-md: clamp(15px, 4.2vw, 16px);
    --text-lg: clamp(16px, 4.8vw, 18px);
    --text-xl: clamp(18px, 5.2vw, 20px);
    --text-2xl: clamp(22px, 7vw, 26px);
    --text-h4: clamp(20px, 6.2vw, 24px);
    --text-h5: clamp(18px, 5.2vw, 20px);
    --text-h6: clamp(16px, 4.8vw, 18px);
    --text-h2: clamp(32px, 8vw, 44px);

    --gap-xs: clamp(5px, 1.6vw, 6px);
    --gap-sm: clamp(6px, 2.2vw, 8px);
    --gap-md: clamp(10px, 3.2vw, 12px);
    --gap-lg: clamp(16px, 5vw, 20px);
    --gap-xl: clamp(20px, 6vw, 24px);
    --gap-2xl: clamp(40px, 12vw, 48px);
    --gap-3xl: clamp(52px, 16vw, 64px);
    --gap-section: clamp(28px, 9vw, 36px);
  }

  body {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }

  .wrapper {
    padding-bottom: clamp(20px, 6vw, 24px);
  }

  .top-navbar,
  .top-navbar__inner {
    margin-top: 0;
    padding-top: 0;
  }

  .models-section__heading {
    font-size: clamp(28px, 8vw, 36px);
  }

  .order-steps-section__heading {
    font-size: clamp(28px, 9.6vw, 36px);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background: var(--color-black);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: var(--lh-normal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding) 24px;
  overflow-x: hidden;
  background: var(--color-white);
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--font-family-display);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

main {
  width: 100%;
}

.page-bleed {
  width: calc(100% + var(--page-padding) * 2);
  max-width: calc(100% + var(--page-padding) * 2);
  margin-left: calc(-1 * var(--page-padding));
  margin-right: calc(-1 * var(--page-padding));
}

.top-navbar {
  background: var(--color-white);
  width: 100%;
}

.top-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--page-width);
  height: 39px;
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: 12px;
  line-height: 0;
}

img.top-navbar__logo {
  display: block;
  width: 64px;
  height: 28px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.top-navbar__promo {
  flex-shrink: 0;
  margin: 0;
  padding: 2px 8px;
  border-radius: 14px;
  background: linear-gradient(to bottom, #04ca0b, #007b04);
  font-family: var(--font-family);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  color: var(--color-white);
}

.top-navbar__promo strong {
  font-weight: var(--fw-bold);
  margin-left: 4px;
}

.hero-planto {
  padding: 48px var(--page-padding);
  background-color: var(--color-white);
  background-image: url('../images/2.jpg');
  background-repeat: no-repeat;
  background-position: center 50px;
  background-size: 100% calc(100% - 50px);
}

@media (max-width: 480px) {
  .hero-planto {
    padding-top: 20px;
    background-position: center 20px;
    background-size: 100% calc(100% - 20px);
  }
}

.hero-planto__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-planto__intro {
  width: 100%;
}

.hero-planto__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 38px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-transform: uppercase;
  color: var(--color-black);
}

.hero-planto__title-accent {
  color: #ef3131;
}

.hero-planto__subtitle {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 15px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-transform: uppercase;
  color: var(--color-black);
}

.hero-planto__showcase {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  overflow: visible;
}

.hero-planto__strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 153px;
  align-items: stretch;
  height: 210px;
  width: calc(100% + var(--page-padding) * 2);
  margin-left: calc(-1 * var(--page-padding));
  margin-right: calc(-1 * var(--page-padding));
  overflow: visible;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-planto__strip--2 {
  z-index: 2;
  height: 220px;
  overflow: hidden;
}

.hero-planto__strip--3 {
  z-index: 3;
  height: 220px;
  overflow: hidden;
}

.hero-planto__strip-visual {
  position: relative;
  height: 100%;
  min-width: 0;
  overflow: visible;
}

.hero-planto__strip--1 {
  overflow: hidden;
}

.hero-planto__strip--1 .hero-planto__strip-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.hero-planto__strip--1 .hero-planto__strip-specs {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

.hero-planto__strip--2 .hero-planto__strip-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 245px;
  overflow: hidden;
}

.hero-planto__strip--2 .hero-planto__strip-specs {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

.hero-planto__strip--3 .hero-planto__strip-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.hero-planto__strip-name {
  position: absolute;
  top: 10px;
  left: 19px;
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 21.26px;
  letter-spacing: -0.74px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-planto__strip--1 .hero-planto__strip-name {
  color: #30848d;
}

.hero-planto__strip--2 .hero-planto__strip-name {
  color: #0d588e;
}

.hero-planto__strip--3 .hero-planto__strip-name {
  color: #a00e0e;
}

.hero-planto__strip-img {
  position: absolute;
  left: -14px;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-planto__strip-img--1 {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  object-position: center;
  transform: none;
  filter: none;
}

.hero-planto__strip-img--2 {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  object-position: center;
  transform: none;
  filter: none;
}

.hero-planto__strip-img--3 {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  object-position: center;
  transform: none;
  filter: none;
}

.hero-planto__strip-specs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 12px 31px 12px 5px;
  color: var(--color-white);
  text-align: right;
}

.hero-planto__strip--1 .hero-planto__strip-specs {
  padding-top: 12px;
}

.hero-planto__strip--2 .hero-planto__strip-specs {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12px;
}

.hero-planto__strip--3 .hero-planto__strip-specs {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12px;
}

.hero-planto__spec {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 117px;
  padding-right: 10px;
  border-right: 1px solid var(--color-white);
}

.hero-planto__spec--price {
  align-items: stretch;
  max-width: 117px;
  border-right: none;
  padding-right: 0;
}

.hero-planto__spec-value,
.hero-planto__spec-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: var(--font-family-display);
  font-weight: var(--fw-medium);
  letter-spacing: -0.74px;
  text-transform: uppercase;
}

.hero-planto__spec-value {
  max-width: 97px;
  min-height: 39px;
  padding: 0 0 10px;
  font-size: 28px;
  line-height: 21.26px;
}

.hero-planto__spec-price {
  min-height: 32px;
  margin-bottom: -4px;
  padding: 10px 0;
  font-size: 20px;
  line-height: 21.26px;
  color: #ffea00;
}

.hero-planto__spec-label,
.hero-planto__spec-old {
  box-sizing: border-box;
  width: 100%;
  max-width: 97px;
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-align: right;
  text-transform: uppercase;
}

.hero-planto__spec--price .hero-planto__spec-old {
  max-width: 117px;
  font-size: 16px;
}

.hero-planto__spec-unit {
  text-transform: lowercase;
}

.hero-planto__benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  width: 100%;
  max-width: 334px;
  padding: 10px 0 46px;
}

.hero-planto__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.hero-planto__benefit--light {
  width: 98px;
  min-height: 121px;
  background: var(--color-white);
  color: var(--color-black);
}

.hero-planto__benefit--dark {
  width: 120px;
  min-height: 148px;
  background: #01242f;
  color: var(--color-white);
}

.hero-planto__benefit-icon {
  flex-shrink: 0;
  object-fit: contain;
}

.hero-planto__benefit-icon--truck {
  width: 37px;
  height: 25px;
}

.hero-planto__benefit-title {
  margin: 0;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-transform: capitalize;
}

.hero-planto__benefit--dark .hero-planto__benefit-title {
  font-size: 14px;
}

.hero-planto__benefit-text {
  margin: 0;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-transform: lowercase;
}

.hero-planto__benefit--dark .hero-planto__benefit-text {
  font-size: 12px;
}

.hero-planto__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.hero-planto__disclaimer {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero-planto__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 319px;
  height: 62px;
  padding: 17px 33px;
  border: 1px solid red;
  border-radius: 14px;
  background: linear-gradient(to bottom, #ef3131, #962020);
  box-shadow: 0 0 7.4px red;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  line-height: 28px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.hero-planto__cta:hover,
.hero-planto__cta:focus {
  filter: brightness(0.95);
  color: var(--color-white);
}

.hero-image-end {
  position: relative;
  display: block;
}

.hero-image-end__photo {
  display: block;
  width: 100%;
  height: 1200px;
  object-fit: cover;
}

.hero-image-end__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 48px var(--section-padding-x);
  pointer-events: none;
}

.hero-image-end__overlay > * {
  pointer-events: auto;
}

.hero-image-end__benefits {
  position: static;
  transform: none;
  width: 100%;
  max-width: 334px;
}

.hero-image-end__showcase {
  width: calc(100% + var(--section-padding-x) * 2);
  margin-left: calc(-1 * var(--section-padding-x));
  margin-right: calc(-1 * var(--section-padding-x));
}

.hero-image-end__showcase .hero-planto__strip {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero-image-end__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 335px;
  min-height: 33px;
  margin: 0;
  padding: 2px 6px;
  border-radius: 14px;
  background: linear-gradient(to bottom, #04ca0b, #007b04);
  font-family: var(--font-family);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  text-align: center;
  color: var(--color-white);
}

.hero-image-end__promo strong {
  font-weight: var(--fw-bold);
}

.hero-image-end__heading {
  margin: 0;
  max-width: 221px;
  font-family: var(--font-family);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.26px;
  text-align: center;
  color: var(--color-white);
}

.hero-image {
  height: auto;
  object-fit: cover;
  display: block;
}

.price-section {
  display: flex;
  background: linear-gradient(to bottom, #3B3A3A, #24221D);
  font-family: var(--font-family-display);
  color: var(--color-white);
}

.perks-section {
  display: flex;
  overflow: hidden;
  background: url('../images/pay2.webp') center / 100% 100% no-repeat;
  font-family: var(--font-family-condensed);
  color: var(--color-white);
}

.perks-block {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 53px;
  padding: 15px 12px;
}

img.perks-block__icon {
  flex-shrink: 0;
  width: 26px;
  height: 25px;
  margin: 14px 0 14px 14px;
}

.perks-block__icon--credit {
  width: 24px;
  height: 25px;
}

.perks-block__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-family-condensed);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: var(--color-white);
}

.perks-block__text strong,
.perks-block__text .perks-block__regular {
  display: block;
  white-space: nowrap;
}

.perks-block__text strong {
  font-weight: 700;
}

.perks-block__text .perks-block__regular {
  font-weight: 300;
}

.perks-block--right {
  padding-right: 0;
}

.price-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 84px;
  padding: 10px;
}

.price-block--left {
  align-items: center;
}

.price-block--right {
  align-items: center;
  color: var(--color-text-muted);
}

.price-badge {
  background-color: var(--color-red);
  border-radius: 5px;
  padding: 0 10px;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.price-current {
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
  line-height: 34px;
  letter-spacing: 0.38px;
  white-space: nowrap;
}

.price-old-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.price-old {
  font-size: var(--text-xl);
  font-weight: var(--fw-regular);
  line-height: 28px;
  letter-spacing: -0.26px;
  text-decoration: line-through;
  white-space: nowrap;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-dark);
}

.cta-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: center;
}

.cta-stock__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  padding: 0 4px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  color: var(--color-dark);
  font-size: var(--text-md);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-normal);
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  padding: 6px 12px;
  border: 1px solid var(--color-red-border);
  border-radius: var(--radius-md);
  background: linear-gradient(
    180.39deg,
    #e50000 2.43%,
    #7f0000 156.78%
  );
  box-shadow: 0 4px 5.4px rgba(243, 5, 5, 0.67);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  animation: cta-pulse 1.5s infinite;
}

.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(
    180.39deg,
    #c40000 2.43%,
    #6b0000 156.78%
  );
  box-shadow: 0 4px 8px rgba(243, 5, 5, 0.8);
  color: var(--color-white);
  animation: none;
  filter: brightness(0.96);
}

.cta-button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
  animation: none;
}

@keyframes cta-pulse {
  0% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-button {
    animation: none;
  }
}

.models-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #f2eeea;
  color: #020704;
}

.models-section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.models-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.models-section__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 2px 8px;
  border: 1px solid #ef3131;
  border-radius: 14px;
  background: rgba(239, 49, 49, 0.05);
  color: #ef3131;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}

.models-section__heading {
  margin: 0;
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
}

.models-section__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.models-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.models-section__cta {
  flex-shrink: 0;
  max-width: 319px;
  margin: 0 auto;
}

.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #01242f;
  color: var(--color-white);
}

.model-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 335 / 250;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.model-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.model-card__badge {
  margin: 0;
  padding: 4px 16px;
  border: 1px solid #ef3131;
  border-radius: 16px;
  background: rgba(239, 49, 49, 0.1);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.model-card__content {
  position: relative;
  width: 100%;
  padding-bottom: 52px;
}

.model-card__scroll {
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.model-card.is-collapsed .model-card__scroll {
  max-height: 152px;
}

.model-card.is-expanded .model-card__scroll {
  max-height: 2000px;
}

.model-card__specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
}

.model-card__spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  max-width: 293px;
  min-height: 26px;
  padding: 0 20px;
}

.model-card__spec--tall {
  min-height: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.model-card__spec--wide {
  align-items: flex-start;
  padding-top: 4px;
  padding-bottom: 4px;
}

.model-card__spec--features {
  align-items: flex-start;
  min-height: 57px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.model-card__spec dt {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}

.model-card__spec dd {
  margin: 0;
  max-width: 143px;
  font-size: 10px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  text-align: right;
}

.model-card__spec--wide dd,
.model-card__spec--features dd {
  max-width: 120px;
}

.model-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0;
  line-height: 1.5;
  text-align: center;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.model-card.is-collapsed .model-card__pricing {
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
}

.model-card__price {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: #ff3737;
}

.model-card__price-old {
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  text-decoration: line-through;
}

.model-card__toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(to bottom, #035670, #05a4d6);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  cursor: pointer;
}

.model-card__toggle-icon {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 8px;
  background: url('../icons/arrow.svg') center / contain no-repeat;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

.model-card.is-expanded .model-card__toggle-icon {
  transform: rotate(0deg);
}

.ideal-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #f2eeea;
  color: #020704;
}

.ideal-section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.ideal-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.ideal-section__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 28px;
  margin: 0;
  border: 1px solid #ef3131;
  border-radius: 16px;
  background: rgba(239, 49, 49, 0.1);
  color: #ef3131;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}

.ideal-section__heading {
  max-width: 306px;
  margin: 0;
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
}

.ideal-section__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.ideal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 187px;
  overflow: hidden;
  border-radius: 16px;
}

.ideal-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  line-height: 0;
}

img.ideal-card__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: transparent;
  object-fit: cover;
  object-position: center center;
}

.ideal-card__overlay {
  display: none;
}

.ideal-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 24px;
}

.ideal-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  margin: 0;
  padding: 4px 12px;
  border: 1px solid #a1ff84;
  border-radius: 16px;
  background: rgba(161, 255, 132, 0.2);
  color: #a1ff84;
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.2px;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.ideal-card__text {
  margin: 0;
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
}

.advantages-section {
  position: relative;
  height: 780px;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: url('../images/backperevag.webp') center bottom / cover no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.advantages-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.advantages-section__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.advantages-section__heading {
  margin: 0;
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
}

.advantages-section__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.advantages-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.advantage-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 24px 32px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
}

.advantage-tab__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  pointer-events: none;
}

.advantage-tab__photo {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
}

.advantage-tab--1 .advantage-tab__photo {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.advantage-tab--2 .advantage-tab__photo {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.advantage-tab--3 .advantage-tab__photo {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.advantage-tab__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advantage-tab--2 .advantage-tab__content {
  align-items: flex-end;
  margin-left: auto;
  text-align: right;
}

.advantage-tab__title {
  margin: 0;
  max-width: 240px;
  font-size: 20px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.advantage-tab--2 .advantage-tab__title {
  max-width: none;
}

.advantage-tab__text {
  max-width: 189px;
  margin: 0;
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.advantage-tab__list {
  max-width: 240px;
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.advantage-tab__list li + li {
  margin-top: 0;
}

.specs-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: url('../images/backinfo.webp') center / cover no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.specs-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.specs-section__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.specs-section__heading {
  margin: 0;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
}

.specs-section__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.specs-section__panel {
  width: 100%;
  max-width: var(--page-width);
}

.specs-section__panel--control {
  height: 449px;
  border-bottom: 1px solid #28a4ab;
}

.specs-section__panel--cargo {
  height: 468px;
  border-radius: 18.615px;
  overflow: hidden;
}

.specs-section__panel-scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.specs-section__panel--control .specs-section__panel-scene {
  height: 447px;
}

.specs-section__panel-photo {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
}

.specs-section__panel--control .specs-section__panel-photo {
  top: 72px;
  height: 375px;
  object-fit: cover;
}

.specs-section__panel--cargo .specs-section__panel-photo {
  top: 41px;
  height: 407px;
  object-fit: cover;
}

.video-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #01242f;
  color: var(--color-white);
}

.video-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
  align-items: center;
}

.video-section__heading {
  font-size: 54px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
  font-family: var(--font-family-display);
  text-align: center;
  width: 100%;
}

.video-section__wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-section__player {
  display: block;
  width: 100%;
  min-height: 500px;
  border: none;
  background: #d9d9d9;
  object-fit: cover;
  vertical-align: middle;
}

.video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-text-dark);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.video-section__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-section__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-section__play.is-playing .video-section__play-icon--play {
  display: none;
}

.video-section__play:not(.is-playing) .video-section__play-icon--pause {
  display: none;
}

.video-section__play-icon {
  display: block;
}

.video-section__play-icon--play {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid currentColor;
}

.video-section__play-icon--pause {
  position: relative;
  width: 20px;
  height: 24px;
}

.video-section__play-icon--pause::before,
.video-section__play-icon--pause::after {
  content: '';
  position: absolute;
  top: 0;
  width: 6px;
  height: 24px;
  background: currentColor;
}

.video-section__play-icon--pause::before {
  left: 2px;
}

.video-section__play-icon--pause::after {
  right: 2px;
}

.reviews-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #01242f;
  color: var(--color-white);
}

.reviews-section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  align-items: center;
}

.reviews-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 335px;
  align-items: center;
}

.reviews-section__heading {
  margin: 0;
  width: 100%;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
  text-align: center;
}

.reviews-section__subtitle {
  margin: 0;
  width: 100%;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  text-align: center;
}

.reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-items: center;
}

.reviews-carousel__viewport {
  width: 100%;
  max-width: 309px;
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.reviews-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.reviews-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.reviews-carousel__track.is-dragging {
  transition: none;
}

.reviews-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
}

.reviews-carousel__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.reviews-carousel__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.reviews-carousel__buttons {
  display: flex;
  width: 137px;
  justify-content: space-between;
}

.reviews-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(12, 10, 4, 0.15);
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
  line-height: 0;
}

.reviews-carousel__btn-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.reviews-carousel__btn--prev .reviews-carousel__btn-icon {
  transform: rotate(180deg);
}

.reviews-carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reviews-carousel__dot.is-active {
  background: var(--color-white);
}

.producer-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #f2eeea;
  color: var(--color-text);
}

.producer-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

.producer-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.producer-section__heading {
  margin: 0;
  width: 100%;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
  text-align: center;
  color: var(--color-text);
}

.producer-section__logo {
  display: block;
  width: 70px;
  height: 36px;
  object-fit: contain;
}

.producer-section__intro {
  margin: 0;
  width: 100%;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
}

.producer-section__card {
  width: 100%;
  overflow: hidden;
  border: 1px solid #a1ff84;
  border-radius: 16px;
  background: #01242f;
}

.producer-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(161, 255, 132, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.producer-item:last-child {
  border-bottom: none;
}

.producer-item__icon {
  display: block;
  flex-shrink: 0;
}

.producer-item__icon--accent {
  filter: brightness(0) saturate(100%) invert(88%) sepia(21%) saturate(746%)
    hue-rotate(58deg) brightness(103%) contrast(101%);
}

.producer-item__icon--sm {
  width: 24px;
  height: 25px;
}

.producer-item__icon--md {
  width: 32px;
  height: 32px;
}

.producer-item__icon--delivery {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.producer-item__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: var(--text-h6);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
  color: #a1ff84;
}

.producer-item__text {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.producer-item__list {
  margin: 0;
  padding-left: 1.5em;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.producer-item__text-old {
  text-decoration: line-through;
}

.equipment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-3xl);
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #01242f;
  color: var(--color-white);
}

.equipment-section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.equipment-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.equipment-section__heading {
  margin: 0;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
  text-align: center;
}

.equipment-section__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
}

.equipment-section__card {
  width: 100%;
  overflow: visible;
  border-radius: 16px;
}

.equipment-section__tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 171px;
  padding: 20px 10px;
  border: 1px solid #a1ff84;
  border-radius: 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.equipment-section__tags-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.equipment-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 34px;
  padding: 2px 6px;
  border: 1px solid #a1ff84;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  white-space: nowrap;
  color: var(--color-white);
}

.equipment-tag--full {
  width: 100%;
}

.equipment-tag--wide {
  flex: 1 1 192px;
  min-width: 0;
}

.equipment-tag--narrow {
  flex: 0 0 113px;
  width: 113px;
}

.equipment-tag__icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.equipment-tag__icon--mono {
  filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
  .perks-block {
    gap: 6px;
    padding: 12px 6px;
  }

  .perks-block--right {
    padding-right: 0;
  }

  img.perks-block__icon {
    width: 22px;
    height: 25px;
  }

  .perks-block__icon--credit {
    width: 20px;
    height: 25px;
  }

  .equipment-section__tags {
    padding: 16px 8px;
  }

  .equipment-section__tags-row {
    gap: 6px;
  }

  .equipment-tag {
    height: 30px;
    padding: 2px 4px;
    gap: 3px;
    font-size: 11px;
  }

  .equipment-tag__icon {
    width: 20px;
    height: 20px;
  }
}

.equipment-section__cta {
  width: 100%;
}

.equipment-section__image-wrap {
  overflow: hidden;
  width: calc(100% + var(--section-padding-x) * 2);
  max-width: calc(100% + var(--section-padding-x) * 2);
  margin-top: -200px;
  margin-left: calc(-1 * var(--section-padding-x));
  margin-right: calc(-1 * var(--section-padding-x));
}

.equipment-section__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: -100px;
  object-fit: cover;
  object-position: center top;
}

.order-steps-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #01242f;
  color: var(--color-white);
}

.order-steps-section__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

.order-steps-section__header {
  width: 100%;
  max-width: 768px;
}

.order-steps-section__heading {
  margin: 0;
  width: 100%;
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.36px;
  text-align: center;
  color: var(--color-white);
}

.order-steps-section__heading-accent {
  color: #a1ff84;
}

.order-steps-section__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  width: 100%;
  max-width: 335px;
}

.order-step__icon {
  display: block;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.order-step__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-family);
  font-size: var(--text-h5);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h4);
  letter-spacing: -0.2px;
  text-align: center;
  color: var(--color-white);
}

.order-step__label {
  color: #a1ff84;
}

.order-form-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-dark);
}

.order-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.field-icon-wrap {
  position: relative;
  margin-bottom: var(--gap-lg);
}

.field-icon-wrap .form-input {
  width: 100%;
  height: 66px;
  padding: 0 16px 0 50px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
}

.field-icon-wrap .form-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.field-icon-wrap select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.field-icon-wrap select.form-input:required:invalid {
  color: rgba(255, 255, 255, 0.55);
}

.field-icon-wrap select.form-input option {
  color: var(--color-text);
  background: var(--color-white);
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.field-icon--color {
  filter: none;
}

.order-form__turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap-lg);
}

.order-form__submit-wrap {
  width: 100%;
}

.order-form__submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.order-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.site-footer {
  padding: var(--gap-xl) var(--section-padding-x) var(--gap-2xl);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.site-footer__copy {
  margin-bottom: var(--gap-xs);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
}

.site-footer__links a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.25);
}

body.thank-you-page {
  min-height: 100vh;
  background: var(--color-dark);
  color: var(--color-white);
}

body.thank-you-page .wrapper {
  background: transparent;
  padding-bottom: var(--gap-2xl);
}

.thank-you-main {
  padding: var(--section-padding-y) 0;
}

.thank-you-section__title {
  font-family: var(--font-family-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.2px;
  margin-bottom: var(--gap-lg);
  padding-left: var(--gap-md);
  border-left: 4px solid var(--color-yellow);
}

.thank-you-section__text {
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--gap-md);
}

.thank-you-section__actions {
  margin-top: var(--gap-xl);
}

.thank-you-section__actions .cta-button {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  animation: none;
}

/* Віджет «Зараз на сайті» — від #ideal-section до #hero-image-end */
.online-visitors-widget {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
  pointer-events: none;
}

.online-visitors-widget--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .online-visitors-widget {
    transition: none;
  }
}

.online-visitors-widget .online-visitors-widget__item {
  border-radius: 5px 0 0 5px;
  padding: 10px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.online-visitors-widget .online-visitors-widget__item .online-visitors-widget__title {
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.2px;
}

.online-visitors-widget .online-visitors-widget__item b {
  font-weight: 700;
  font-size: 20px;
  padding-left: 40px;
}

.online-visitors-widget.online-visitors-widget_dark .online-visitors-widget__item {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.online-visitors-widget.online-visitors-widget_dark
  .online-visitors-widget__item:first-child::before {
  content: '';
  display: block;
  background: url('../icons/online-visitors-widget-people.png') no-repeat 0 0 / contain;
  width: 26px;
  height: 24px;
  position: absolute;
  left: 10px;
  bottom: 9px;
}
