@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 900;
  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 900;
  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;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/oswald-400-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: 400;
  font-display: swap;
  src: url('../fonts/oswald-400-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: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/montserrat-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/montserrat-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-dark: #24221d;
  --color-dark-deep: #110e0d;
  --color-black: #010101;
  --color-video-bg: #0d0300;
  --color-dot-inactive: #333;
  --color-dark-gray: #3b3a3a;
  --color-purple-deep: #300b3c;
  --color-purple-card: #4f176c;
  --color-purple-muted: #3e2c48;
  --color-purple-grey: #504059;
  --color-gold: #fffa7b;
  --color-gold-dark: #c46709;
  --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);
  }

}

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

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Фон сторінки видно лише під футером і по його краях — у колір футера */
body {
  background: #202020;
  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: #202020;
}

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));
}

.hero-image {
  height: auto;
  object-fit: cover;
  display: block;
}

.hero {
  position: relative;
  container-type: inline-size;
}

.hero .hero-image {
  width: 100%;
}

/* Логотипа в макеті немає: лівий верхній кут, лівий край контенту макета (15px з 430),
   висота ≈ висоті верхньої кнопки й по центру з нею */
.hero-logo {
  position: absolute;
  top: 4.32%;
  left: 3.49cqw;
  width: 26cqw;
  height: auto;
  margin-top: 0.21cqw;
}

/* Кнопки поверх head.webp. Розміри з макета 430×950 (Figma 1:36, 1:50),
   переведені в cqw / %, щоб масштабувались разом з картинкою. */
.hero-cta {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: linear-gradient(180deg, #ff7300, #f40);
  color: #000;
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.172cqw;
  text-decoration: none;
  white-space: nowrap;
  animation: cta-pulse 1.5s infinite;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  animation: none;
  filter: brightness(0.96);
}

.hero-cta svg {
  flex: none;
  height: auto;
}

.hero-cta--top {
  top: 4.32%;
  right: 8.14cqw;
  gap: 1.536cqw;
  padding: 3.379cqw 4.607cqw;
  font-size: 3.071cqw;
}

.hero-cta--top svg {
  width: 2.147cqw;
}

.hero-cta--bottom {
  top: 86.42%;
  left: 10.7cqw;
  right: 10.7cqw;
  gap: 2.918cqw;
  padding: 6.419cqw 8.753cqw;
  font-size: 5.836cqw;
}

.hero-cta--bottom svg {
  width: 4.084cqw;
}

/* Смуга переваг під героєм (Figma 1:57) */
.features-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12.28px 15px 17.2px;
  background: #ff9017;
}

.features-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.38px;
}

.features-bar__item img {
  width: 24.575px;
  height: 24.575px;
}

.features-bar__text {
  margin: 0;
  font-family: var(--font-family);
  font-size: 12.286px;
  font-weight: 600;
  line-height: 14.129px;
  letter-spacing: -0.688px;
  color: #101010;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Секція «№1 на будівництві» (Figma 1:84) */
.usage-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-block: 48px;
  overflow: hidden;
  background: #272727;
  color: var(--color-white);
  text-align: center;
}

.usage-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18.35px;
  padding-inline: 23px;
}

.usage-section__heading,
.volumes-section__heading,
.engine-section__heading,
.comfort-section__heading,
.specs-photo__heading,
.buyers-section__heading,
.how-order__heading {
  max-width: 346px;
  margin: 0;
  font-family: var(--font-family);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.38px;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.usage-section__heading-accent,
.volumes-section__heading-accent,
.comfort-section__heading-accent,
.buyers-section__heading-accent,
.how-order__heading-accent {
  color: #ff7001;
}

.usage-section__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.18px;
}

.usage-section__media img {
  width: 100%;
}

/* Стрічка: line-tile.webp (874×75 @2x) повторюється по горизонталі і їде вліво
   рівно на одну плитку за цикл. Нахил 3.36° — як у макеті. */
.usage-section__tape {
  height: 37.5px;
  margin: 15px -10px;
  overflow: hidden;
  transform: rotate(3.36deg);
}

.usage-section__tape::before {
  content: '';
  display: block;
  width: calc(100% + 437px);
  height: 100%;
  background: url('../images/line-tile.webp') 0 0 / 437px 100% repeat-x;
  animation: tape-move 12s linear infinite;
}

@keyframes tape-move {
  to {
    transform: translateX(-437px);
  }
}

/* Секція «Різний об’єм в наявності» (Figma 1:92). Заголовок — спільне правило
   з .usage-section__heading вище. */
.volumes-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 48px 15px 93px;
  background: #272727;
  color: var(--color-white);
  text-align: center;
}

.volumes-section__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-top: 10px;
}

.volume-card {
  display: flex;
  align-items: center;
  gap: 12.28px;
  width: 370px;
  max-width: 100%;
  height: 178px;
  padding: 24.58px;
  border-radius: 18.42px;
  background: #f0f0f0;
  color: #000;
}

.volume-card__image {
  flex: none;
  width: 106px;
  height: 129px;
  object-fit: contain;
}

.volume-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  min-width: 0;
  height: 100%;
  font-family: var(--font-family-display);
  text-align: right;
}

.volume-card__name {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 36.86px;
  font-weight: 700;
  line-height: 42.39px;
  letter-spacing: -0.688px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.volume-card__power {
  margin: 0;
  padding-top: 6.14px;
  font-size: 18.42px;
  font-weight: 400;
  line-height: 21.18px;
  letter-spacing: -0.688px;
  text-transform: lowercase;
}

/* На вузьких екранах стара ціна переноситься над нову */
.volume-card__prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  column-gap: 12px;
  margin: auto 0 0;
  font-weight: 400;
  line-height: 30.72px;
  text-transform: uppercase;
  white-space: nowrap;
}

.volume-card__old {
  font-size: 20px;
  opacity: 0.2;
}

.volume-card__new {
  font-size: 24px;
  color: #ff7001;
}

.volumes-section__effect {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

/* Секція «Двигун» (Figma 5:190): текст поверх engine.webp.
   Позиції — у % від кадру 430×637, щоб текст лишався на тих самих місцях фото. */
.engine-section {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: normal;
}

.engine-section__image {
  width: 100%;
}

.engine-feature {
  position: absolute;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  white-space: nowrap;
}

.engine-feature__title {
  display: block;
  color: #000;
  font-weight: 800;
}

/* Шрифт заголовка — спільне правило з .usage-section__heading */
.engine-section__heading {
  position: absolute;
  top: 5.49%;
  right: 5.35%;
  max-width: 384px;
  color: var(--color-white);
  text-align: right;
}

.engine-section__heading-accent {
  color: #4c0d0e;
}

/* Помаранчева риска зліва від кожної переваги — розміри й зсуви з макета */
.engine-feature::before {
  content: '';
  position: absolute;
  background: #ff5a01;
}

.engine-feature--cooling {
  left: 70%;
  top: 40.19%;
}

.engine-feature--cooling::before {
  left: -13px;
  top: -5px;
  width: 6px;
  height: 29px;
}

.engine-feature--copper {
  left: 60.23%;
  top: 65.62%;
}

.engine-feature--copper::before {
  left: -12px;
  top: 2px;
  width: 6px;
  height: 14px;
}

.engine-feature--power {
  left: 34.42%;
  top: 79.12%;
}

.engine-feature--power::before {
  left: -11px;
  top: 1px;
  width: 5px;
  height: 17px;
}

/* Секція «Зручне керування» + «Комплектація» (Figma 1:177, 430×1461).
   Фон — backcomfort.webp (рівно 430×1461 @2x). Відступи — з координат макета. */
.comfort-section {
  display: flex;
  flex-direction: column;
  padding-block: 48px 55.8px;
  background: #272727 url('../images/backcomfort.webp') top center / 100% auto no-repeat;
  color: var(--color-white);
}

/* Шрифт заголовка — спільне правило з .usage-section__heading */
.comfort-section__heading {
  max-width: none;
  margin: 0 23px;
  text-align: left;
}

.comfort-section__heading--center {
  margin-top: 71px;
  text-align: center;
}

.comfort-section__media {
  position: relative;
  margin-top: 36px;
}

/* Текст пунктів уже намальований на comfort.webp — HTML-текст поверх не додавати */
.comfort-section__media img,
.comfort-section__complect {
  width: 100%;
}

.comfort-section__complect {
  margin-top: 36px;
}

/* Кнопка в потоці сторінки: вигляд і пульсація — від .hero-cta */
.pill-cta {
  position: relative;
  align-self: center;
  margin-top: 13px;
  gap: 12.55px;
  padding: 27.6px 37.64px;
  font-size: 25.094px;
  letter-spacing: -0.74px;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.25));
}

.pill-cta svg {
  width: 17.563px;
}

/* Секція «Характеристики» (Figma 1:213): усі характеристики й бейдж гарантії
   намальовані на characteristic.webp (430×624 @2x), зверху — лише заголовок. */
.specs-photo {
  position: relative;
}

.specs-photo img {
  width: 100%;
}

/* Шрифт заголовка — спільне правило з .usage-section__heading */
.specs-photo__heading {
  position: absolute;
  top: 7.69%;
  left: 0;
  right: 0;
  max-width: 384px;
  margin-inline: auto;
  color: var(--color-white);
  text-align: center;
}

/* Секція «Відгуки покупців» (Figma 1:215, 430×1953). Картки — готові зображення
   rew1–4; відступи — з координат макета. Префікс buyers-, бо .reviews-section
   зайнятий старою каруселлю відгуків нижче на сторінці. */
.buyers-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 23px;
  background: #202020;
  color: var(--color-white);
  text-align: center;
}

.buyers-section__intro {
  margin: 0;
  font-size: 18.49px;
  line-height: 21.26px;
  letter-spacing: -0.74px;
}

/* Висота рядка = висота зірок: «4,5» (39.5px) не розпирає рядок і не зсуває все нижче */
.buyers-section__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 38.78px;
  margin-top: 24.9px;
}

.buyers-section__stars {
  display: flex;
  gap: 5.78px;
}

.buyers-section__stars img {
  width: 40.44px;
  height: 38.78px;
}

.buyers-section__score {
  font-size: 34.34px;
  font-weight: 600;
  line-height: 39.49px;
  letter-spacing: -0.74px;
}

.buyers-section__score small {
  font-size: 21.13px;
  font-weight: 400;
}

/* Шрифт — спільне правило з .usage-section__heading; у макеті без тіні й з +0.38px */
.buyers-section__heading {
  margin-top: 56.4px;
  letter-spacing: 0.38px;
  text-shadow: none;
}

/* У rew*.webp біла картка займає x 10…776 з 787 (решта — прозора тінь),
   тож зображення ширше за контент на 787/767, щоб картка стала рівно 384px */
.buyers-section__list {
  display: flex;
  flex-direction: column;
  width: 102.61%;
  margin-top: 35.2px;
}

.buyers-section__list img {
  width: 100%;
  max-width: none;
}

.buyers-section .pill-cta {
  margin-top: 55.2px;
}

/* Секція «Як замовити?» (Figma 1:308, 430×482). Відступи — з координат макета. */
.how-order {
  padding: 36.4px 23px 60.6px;
  background: #373737;
  color: var(--color-white);
}

/* Шрифт — спільне правило з .usage-section__heading; у макеті без тіні й трекінгу */
.how-order__heading {
  margin-inline: auto;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}

/* Крок у макеті — 79.12px: текстовий блок 58.8px + відступ; у браузері текст 57.5px, тож gap більший */
.how-order__list {
  display: flex;
  flex-direction: column;
  gap: 21.6px;
  margin: 44.5px 0 0;
  padding: 0;
  list-style: none;
}

.how-order__item {
  display: flex;
  align-items: flex-start;
  gap: 16.05px;
}

.how-order__num {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 48.16px;
  height: 48.16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff6f00, #ff4701);
  filter: drop-shadow(0 4.59px 6.88px rgba(255, 111, 0, 0.28));
  font-size: 27.52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.688px;
}

.how-order__title {
  margin: 0;
  font-size: 17.77px;
  font-weight: 800;
  line-height: 28.44px;
}

/* У макеті в один рядок; на вузьких екранах дозволяємо перенос */
.how-order__text {
  margin: 0;
  padding-top: 3.44px;
  color: #a3a3a3;
  font-size: 16.05px;
  line-height: 25.69px;
}

.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-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,
  .hero-cta,
  .usage-section__tape::before {
    animation: none;
  }
}

/* Форма замовлення (Figma 1:376): біла картка на #f1f4f8. Розміри — з макета. */
.order-form-section {
  padding: 48px 13.87px;
  background: #f1f4f8;
}

.order-form-card {
  padding: 46.22px 13.2px 19.8px;
  border-radius: 21.5px;
  background: var(--color-white);
  color: #101010;
}

.order-form__heading {
  max-width: 376px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.74px;
  text-align: center;
  text-transform: uppercase;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.order-field {
  position: relative;
  display: block;
}

.order-field__icon {
  position: absolute;
  left: 15.69px;
  top: 50%;
  width: 33.33px;
  height: 33.33px;
  transform: translateY(-50%);
  pointer-events: none;
}

.order-field__input {
  width: 100%;
  height: 72.64px;
  padding: 0 21.5px 0 64.72px;
  border: 0.86px solid #d1d1d1;
  border-radius: 7.93px;
  background: var(--color-white);
  color: #101010;
  font-family: var(--font-family);
  font-size: 18.49px;
  appearance: none;
  -webkit-appearance: none;
}

.order-field__input::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.order-field__input:focus-visible {
  outline: 2px solid #ff7001;
  outline-offset: 2px;
}

/* Вибір об'єму — помаранчеве поле. Стрілку списку додали ми: у макеті її немає,
   а без неї поле не схоже на випадний список */
.order-field--accent .order-field__input {
  padding-right: 48px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.5l6 6 6-6' stroke='%232f2f2f' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 21.5px center / 14px 9px no-repeat,
    linear-gradient(180deg, #ff7300, #f40);
  color: #2f2f2f;
  cursor: pointer;
}

.order-field--accent option {
  color: #101010;
  background: var(--color-white);
}

.order-pay {
  margin-top: 1.2px;
  overflow: hidden;
  border: 0.86px solid #acacac;
  border-radius: 7.93px;
}

.order-pay__title {
  display: flex;
  align-items: center;
  gap: 15.85px;
  margin: 0;
  padding: 13.2px;
  font-size: 21.13px;
  font-weight: 600;
  line-height: 24.3px;
  letter-spacing: -0.74px;
}

.order-pay__title img {
  flex: none;
  width: 33.02px;
  height: 33.02px;
}

.order-pay__text {
  display: flex;
  align-items: flex-start;
  gap: 19.8px;
  margin: 0;
  padding: 18.49px 15.85px;
  border-top: 0.86px solid #acacac;
  background: #fafafa;
  font-size: 15.85px;
  line-height: 18.23px;
  letter-spacing: -0.74px;
}

.order-pay__text img {
  flex: none;
  width: 39.61px;
  height: 37.24px;
}

.order-form__turnstile {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

/* Вигляд і пульсація — від .hero-cta / .pill-cta; тут — на всю ширину й білий текст */
.order-form__submit {
  align-self: stretch;
  margin-top: 6px;
  border: 0;
  color: var(--color-white);
  font-family: inherit;
  cursor: pointer;
}

.order-form__submit:disabled {
  opacity: 0.75;
  animation: none;
  cursor: not-allowed;
}

.order-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15.85px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.order-trust li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170.63px;
  padding: 19.8px;
  border: 0.86px solid #acacac;
  border-radius: 7.93px;
  font-size: 14.53px;
  line-height: 16.71px;
  letter-spacing: -0.74px;
  text-align: center;
}

.order-trust img {
  width: 66px;
  height: auto;
  margin-bottom: 20.8px;
}

/* Футер — у темній палітрі сторінки (#202020, як секція відгуків) */
.site-footer {
  padding: var(--gap-xl) var(--section-padding-x) var(--gap-2xl);
  background: #202020;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
}

.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: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ff7001;
}

.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;
}

