@charset "UTF-8";
/* =====================================================================
   ПОВЕЛИТЕЛЬ ОГНЯ — лендинг
   Структура файла:
     1. Переменные
     2. Подключение шрифта Gilroy
     3. Сброс стилей (reset)
     4. Базовые стили и контейнер
     5. Шапка сайта (header + логотип)
     6. Первый экран (hero)
     7. Кнопки
     8. Адаптив (планшет / мобильные)
   ===================================================================== */
.wrapper {
  overflow: hidden;
}

/* ============ 1. Переменные ============ */
/* ============ 2. Подключение шрифта Gilroy ============
   Раскомментируйте блок и положите файлы шрифта в assets/fonts/,
   чтобы использовать фирменный Gilroy. До этого работает Manrope. */
/*
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
*/
/* ============ 3. Сброс стилей ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* ============ 4. Базовые стили и контейнер ============ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy", "Manrope", sans-serif;
  color: #5C6B7A;
  background-color: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

.inner_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* ============ 5. Шапка сайта ============ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px;
}
@media screen and (max-width: 480px) {
  .header_container {
    padding: 0;
  }
}

.logo {
  width: 70px;
  height: 70px;
  display: block;
}
.logo__icon {
  width: 100%;
  height: 100%;
}

/* ============ 6. Первый экран (hero) ============ */
.hero {
  position: relative;
  min-height: 720px;
  background-color: #F6EFE8;
}
.hero__bg, .hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg-img {
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F6EFE8 0%, #FFF8F0 18%, rgba(246, 239, 232, 0.62) 46%, rgba(246, 239, 232, 0.15) 64%, rgba(246, 239, 232, 0) 70%);
}
.hero__container {
  position: relative;
  z-index: 2;
  padding-top: 143px;
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #F97316;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px 8px 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 248, 240, 0.2);
  backdrop-filter: blur(40px);
}
.hero__badge-icon {
  width: 22px;
  height: 22px;
}
.hero__title {
  margin-top: 36px;
  margin-bottom: 8px;
  max-width: 513px;
  color: #2D2420;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.hero__text {
  max-width: 588px;
  color: #8A7E78;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero__partners-mobile {
  display: none;
}

/* ============ Бегущая строка (Ticker) ============ */
.ticker {
  position: absolute;
  bottom: -16px;
  left: -2%;
  width: 104%;
  z-index: 5;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  background: #FFF8F3;
  transform: rotate(-0.2deg);
  transform-origin: center;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
  will-change: transform;
}
.ticker__group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ticker__item {
  color: #7B5040;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
}
.ticker__star {
  font-size: 14px;
  color: #F97316;
  user-select: none;
  display: block;
  width: 16px;
  height: 16px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ============ 7. Кнопки ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: none;
  color: #FFF;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  border-radius: 16px;
  background: #F97316;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background: #E95F00;
}
.btn--secondary {
  color: #7C2D12;
  border-radius: 16px;
  border: 1px solid rgba(124, 45, 18, 0.2);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.btn--secondary:hover {
  color: #FFF;
  border-radius: 16px;
  border: 1px solid rgba(124, 45, 18, 0.2);
  background: rgba(124, 45, 18, 0.4);
  backdrop-filter: blur(20px);
}

/* ============ 8. Адаптив ============ */
@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 756px;
  }
  .hero__overlay {
    background: linear-gradient(180deg, #F6EFE8 0%, rgba(246, 239, 232, 0.92) 42%, rgba(246, 239, 232, 0.55) 68%, rgba(246, 239, 232, 0.2) 100%);
  }
  .hero__container {
    padding-top: 130px;
  }
  .hero__title {
    font-size: 40px;
    max-width: 440px;
  }
  .quiz {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .quiz__title {
    font-size: 32px;
  }
  .quiz__subtitle {
    font-size: 19px;
  }
  .quiz__card {
    padding: 32px;
    border-radius: 22px;
  }
  .quiz__question {
    font-size: 24px;
  }
  .quiz__option-text {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .header {
    padding: 20px;
    padding-top: 8px;
    padding-left: 8px;
    padding-bottom: 0;
  }
  .header .logo {
    width: 52px;
    height: 52px;
  }
  .logo__text-bottom {
    font-size: 18px;
  }
  .hero__overlay {
    background: linear-gradient(180deg, #FFF8F0 0%, #FFF8F0 15%, #FFFFFF 40%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0) 80%);
    height: 100%;
  }
  .hero__container {
    padding-top: 65px;
  }
  .hero__title {
    font-size: 24px;
    margin-top: 24px;
  }
  .hero__title br {
    display: none;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    gap: 8px;
  }
  .hero .btn {
    width: 100%;
    font-size: 15px;
  }
  .hero__badge {
    color: #F97316;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 8px 15px 8px 23px;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    white-space: nowrap;
  }
  .hero__partners-mobile {
    display: block;
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 0 20px;
  }
  .hero__partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
  }
  .hero__partners-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .hero__partners-title {
    max-width: 261px;
    width: 100%;
    color: #000;
    text-align: center;
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
  }
  .hero__partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero__partner-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 16px;
    border: 1px solid #F6D4C4;
    background: #FFF8F3;
    padding: 8px 6px;
    color: #7B5040;
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    white-space: nowrap;
  }
  .ticker {
    display: none;
  }
}
.comfort-magic {
  padding: 100px 0;
}
.comfort-magic_title {
  color: #2D2420;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.comfort-magic_description {
  max-width: 578px;
  color: #8A7E78;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto 48px;
}
.comfort-magic__blocks {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.comfort-magic__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(127, 138, 149, 0.1);
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
}
.comfort-magic__item .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.comfort-magic__item .item_title {
  color: #2E3448;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}
.comfort-magic__item .item_description {
  color: #8A7E78;
  text-align: center;
  font-family: "SF Pro Display", "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .comfort-magic {
    margin-bottom: 60px;
    padding: 0;
  }
  .comfort-magic_title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 8px;
  }
  .comfort-magic_description {
    text-align: left;
    font-size: 16px;
    line-height: normal;
    max-width: 100%;
    margin: 0 0 32px 0;
  }
  .comfort-magic .container {
    padding: 0 20px;
  }
  .comfort-magic__blocks {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
  }
  .comfort-magic__blocks::-webkit-scrollbar {
    display: none;
  }
  .comfort-magic__blocks {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .comfort-magic__item {
    flex: 0 0 200px;
    width: 200px;
    scroll-snap-align: start;
    padding: 24px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  .comfort-magic__item .icon {
    margin-bottom: 16px;
  }
  .comfort-magic__item .item_title {
    font-size: 20px;
  }
  .comfort-magic__item .item_description {
    font-size: 16px;
  }
}

.why-us {
  background: linear-gradient(180deg, #FFF8F0 0%, #FFEDE1 116.02%);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.why-us .bg1 {
  position: absolute;
  top: -101px;
  left: -30px;
  width: 459px;
  height: 503px;
}
@media screen and (max-width: 768px) {
  .why-us .bg1 {
    display: none;
  }
}
.why-us .bg2 {
  width: 491px;
  height: 595px;
  position: absolute;
  bottom: 307px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .why-us .bg2 {
    display: none;
  }
}
.why-us_title {
  color: #2D2420;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.why-us_description {
  color: #8A7E78;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 50px;
}
.why-us .why-us_block {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}
.why-us .why-us_block .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding-right: 30px;
}
.why-us .why-us_block .item:last-child {
  border: none;
  padding-right: 0;
}
.why-us .why-us_block .item_title {
  color: #F97316;
  text-align: center;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.why-us .why-us_block .item_description {
  color: #8F8F8F;
  text-align: center;
  font-family: "SF Pro Display", "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 510;
  line-height: normal;
}
.why-us .info_text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #7C2D12;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.why-us .info_text img {
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  .why-us {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .why-us_title {
    color: #2D2420;
    text-align: center;
    font-family: "Gilroy", "Manrope", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
    text-align: center;
  }
  .why-us_description {
    color: #7C2D12;
    text-align: center;
    font-family: "Gilroy", "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 32px;
  }
  .why-us .why-us_block {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
  .why-us .why-us_block .item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    width: 100%;
  }
  .why-us .why-us_block .item:last-child {
    border-bottom: none;
  }
  .why-us .why-us_block .item_title {
    font-size: 18px;
    text-align: left;
    flex-shrink: 0;
  }
  .why-us .why-us_block .item_description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 210px;
    text-align: center;
  }
  .why-us .why-us_block .item_description br {
    display: none;
  }
  .why-us .info_text {
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-align: left;
  }
  .why-us .info_text img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
}
.why-us .how-it-works {
  margin-top: 200px;
  position: relative;
}
.why-us .how-it-works_title {
  color: #2D2420;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.why-us .how-it-works_description {
  color: #8A7E78;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 50px;
}
.why-us .how-it-works_block {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-us .how-it-works_block .line {
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 0;
  border-top: 2px dashed #F7B56A;
  z-index: 1;
  pointer-events: none;
}
.why-us .how-it-works .block_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.why-us .how-it-works .block_item .icon-block {
  position: relative;
  border-radius: 46px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(254, 153, 127, 0.05);
  padding: 24px;
  margin-bottom: 16px;
}
.why-us .how-it-works .block_item .icon-block .icon {
  width: 32px;
  height: 32px;
}
.why-us .how-it-works .block_item .icon-block .number {
  width: 29px;
  height: 28px;
  position: absolute;
  right: -5px;
  top: -4px;
  border-radius: 46px;
  background: rgba(254, 240, 229, 0.9);
  box-shadow: 0 0 20px 0 rgba(254, 153, 127, 0.05);
  color: #F97316;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.why-us .how-it-works .block_item .item_title {
  color: #000;
  text-align: center;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}
.why-us .how-it-works .block_item .item_description {
  color: #8F8F8F;
  text-align: center;
  font-family: "SF Pro Display", "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .why-us .how-it-works {
    margin-top: 60px;
  }
  .why-us .how-it-works_title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
  }
  .why-us .how-it-works_description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    color: #8A7E78;
  }
  .why-us .how-it-works_block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    max-width: 340px;
    margin: 0 auto;
  }
  .why-us .how-it-works_block .line {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 25.5px;
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 1.5px dashed #F7B56A;
    z-index: 1;
    pointer-events: none;
  }
  .why-us .how-it-works .block_item {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
  }
  .why-us .how-it-works .block_item .icon-block {
    grid-column: 1;
    grid-row: 1/span 2;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    padding: 0;
    margin-bottom: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .why-us .how-it-works .block_item .icon-block .icon {
    display: none;
  }
  .why-us .how-it-works .block_item .icon-block .number {
    position: static;
    background: transparent;
    box-shadow: none;
    color: #F97316;
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 700;
    width: auto;
    height: auto;
  }
  .why-us .how-it-works .block_item .item_title {
    grid-column: 2;
    grid-row: 1;
    color: #2E3448;
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    line-height: normal;
  }
  .why-us .how-it-works .block_item .item_description {
    grid-column: 2;
    grid-row: 2;
    color: #8A7E78;
    font-family: "SF Pro Display", "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    line-height: normal;
  }
  .why-us .how-it-works .block_item .item_description br {
    display: none;
  }
}

/* ============ Квиз «Собери свой праздник» — интерактивный компонент ============
   Полное определение размещено в конце файла и переопределяет ранние стили. */
.quiz {
  padding-top: 160px;
  padding-bottom: 180px;
  background-color: #FFF;
}
.quiz__container {
  max-width: 980px;
}
.quiz__title {
  color: #2D2420;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}
.quiz__subtitle {
  margin-top: 16px;
  color: #8A7E78;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quiz__card {
  margin-top: 48px;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(127, 138, 149, 0.1);
  background: rgba(255, 255, 253, 0.4);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
}
.quiz__progress {
  display: flex;
  gap: 24px;
}
.quiz__progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 32px;
  background: #D9D9D9;
}
.quiz__progress-bar--active {
  background: #2E3448;
}
.quiz__progress[hidden] {
  display: none;
}
.quiz__panel {
  display: none;
  margin-top: 32px;
}
.quiz__panel.is-active {
  display: block;
}
.quiz__step-label {
  color: #2E3448;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz__question {
  margin-top: 8px;
  color: #2E3448;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quiz__options {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quiz__option {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  width: fit-content;
}
.quiz__radio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.quiz__option-mark {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #FE997F;
  transition: border-color 0.15s ease;
}
.quiz__radio:checked + .quiz__option-mark {
  border-color: #FE997F;
}
.quiz__radio:checked + .quiz__option-mark::after {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  background: #F97316;
}
.quiz__option-text {
  color: #7C2D12;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz__slider {
  position: relative;
  margin-top: 65px;
  padding-top: 62px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.quiz__slider-bubble {
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 25px;
  border-radius: 64px;
  background: #F97316;
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.quiz__slider-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -1px;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: #F97316;
}
.quiz__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #FFD0C4;
  outline: none;
  cursor: pointer;
}
.quiz__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F97316;
  border: 5px solid #FFFFFF;
  box-shadow: 0 0 0 2px #F97316, 0 3px 8px rgba(45, 36, 32, 0.2);
  cursor: pointer;
}
.quiz__range::-moz-range-thumb {
  width: 36px;
  height: 36px;
  border: 5px solid #FFFFFF;
  border-radius: 50%;
  background: #F97316;
  box-shadow: 0 0 0 2px #F97316, 0 3px 8px rgba(45, 36, 32, 0.2);
  cursor: pointer;
}
.quiz__slider-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.quiz__chip {
  padding: 8px 16px;
  border-radius: 40px;
  border: 2px solid rgba(124, 45, 18, 0.5);
  background: #FFF;
  color: rgba(124, 45, 18, 0.5);
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}
.quiz__slider-dash {
  flex: 0 0 auto;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: #8B8B8B;
}
.quiz__form-title {
  text-align: center;
  color: #2E3448;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quiz__fields {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quiz__field {
  position: relative;
  display: block;
}
.quiz__field-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: inline-flex;
  color: #A99E94;
  pointer-events: none;
}
.quiz__input {
  width: 100%;
  padding: 12px 16px;
  color: #9E9E9E;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 56px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  border-radius: 16px;
  border: 1px solid rgba(124, 45, 18, 0.05);
  background: rgba(242, 242, 242, 0.8);
}
.quiz__input::placeholder {
  color: #9E9E9E;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.quiz__message {
  margin-top: 16px;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #E5484D;
}
.quiz__message--ok {
  color: #3E9C5A;
}
.quiz__panel--success {
  text-align: center;
  padding: 24px 0;
}
.quiz__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #8FCB9E;
  background: #EAF6EE;
  color: #4CAF50;
}
.quiz__success-title {
  margin-top: 22px;
  color: #1B2533;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}
.quiz__success-text {
  max-width: 560px;
  margin: 14px auto 0;
  color: #8A7E78;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.quiz__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.quiz__actions--end {
  justify-content: flex-end;
}
.quiz__actions--center {
  justify-content: center;
}
.quiz__next, .quiz__submit {
  padding: 8px 16px;
  border: none;
  border-radius: 16px;
  background: #F97316;
  color: #FFF;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.quiz__next:hover, .quiz__submit:hover {
  background: #E95F00;
}
.quiz__next:disabled, .quiz__submit:disabled {
  opacity: 0.7;
  cursor: default;
}
.quiz__submit {
  padding: 8px 16px;
}
.quiz__back {
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(124, 45, 18, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #7C2D12;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: background-color 0.2s ease;
}
.quiz__back:hover {
  background: #F7F3EF;
}

@media (max-width: 480px) {
  .quiz {
    padding: 60px 0;
  }
  .quiz__title {
    font-size: 24px;
  }
  .quiz__subtitle {
    margin-top: 16px;
    font-size: 20px;
  }
  .quiz__card {
    margin-top: 32px;
    padding: 32px 24px;
    border-radius: 16px;
  }
  .quiz__progress {
    gap: 8px;
  }
  .quiz__progress-bar {
    height: 4px;
  }
  .quiz__panel {
    margin-top: 32px;
  }
  .quiz__step-label {
    font-size: 16px;
  }
  .quiz__question {
    margin-top: 8px;
    font-size: 20px;
  }
  .quiz__options {
    margin-top: 16px;
    gap: 16px;
  }
  .quiz__option {
    gap: 8px;
  }
  .quiz__option-mark {
    width: 20px;
    height: 20px;
  }
  .quiz__option-text {
    font-size: 18px;
  }
  .quiz__container {
    padding: 0 20px;
  }
  .quiz__slider {
    margin-top: 32px;
    padding-top: 54px;
  }
  .quiz__slider-bubble {
    padding: 8px 16px;
    border-radius: 64px;
    background: #F97316;
    color: #FFF;
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    top: -10px;
  }
  .quiz__slider-scale {
    margin-top: 18px;
  }
  .quiz__chip {
    padding: 0;
    border: none;
    background: transparent;
    color: #A99E94;
    font-size: 15px;
  }
  .quiz__range {
    height: 10px;
  }
  .quiz__slider-dash {
    display: none;
  }
  .quiz__form-title {
    font-size: 20px;
  }
  .quiz__fields {
    margin-top: 32px;
    gap: 16px;
  }
  .quiz__field-icon {
    left: 16px;
  }
  .quiz__input {
    padding: 15px 18px 15px 50px;
    font-size: 15px;
  }
  .quiz__actions {
    margin-top: 32px;
    gap: 12px;
  }
  .quiz__next, .quiz__back {
    padding: 8px 16px;
    font-size: 16px;
  }
  .quiz__submit {
    width: 100%;
    padding: 8px 16px;
    font-size: 16px;
  }
  .quiz__success-icon {
    width: 32px;
    height: 32px;
  }
  .quiz__success-title {
    margin-top: 18px;
    font-size: 20px;
  }
  .quiz__success-text {
    font-size: 16px;
  }
}
/* ============ Прайс-лист для партнёров ============ */
.price-list {
  position: relative;
  overflow: hidden;
  background: linear-gradient(270deg, #FFAB72 0%, #FFF8F0 100%);
}
.price-list__container {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 225px;
}
.price-list__content {
  max-width: 465px;
}
.price-list__badge {
  display: inline-block;
  padding: 8px 8px 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.05);
  background: rgba(248, 223, 194, 0.4);
  backdrop-filter: blur(20px);
  color: #F97316;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.price-list__title {
  margin-top: 16px;
  color: #2E3448;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.price-list__subtitle {
  margin-top: 16px;
  max-width: 530px;
  color: #8A7E78;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.price-list__form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-list__toggle {
  display: flex;
  padding: 8px 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(186, 187, 189, 0.8);
  backdrop-filter: blur(20px);
}
.price-list__toggle-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.price-list__toggle-label {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  border-radius: 32px;
  color: #2E3448;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.price-list__toggle-input:checked + .price-list__toggle-label {
  border-radius: 32px;
  background: #FFF;
  color: #2E3448;
}
.price-list__field {
  position: relative;
  display: block;
}
.price-list__field-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  color: #777474;
  pointer-events: none;
}
.price-list__input {
  width: 100%;
  padding: 17px 20px 17px 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.8);
  color: #777474;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.price-list__input::placeholder {
  color: #777474;
  font-size: 20px;
}
.price-list__submit {
  margin-top: 16px;
  padding: 17px 24px;
  border: none;
  border-radius: 16px;
  background: #F97316;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.price-list__submit:hover {
  background: #E95F00;
}
.price-list__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 639px;
  height: 717px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1024px) {
  .price-list__image {
    width: 44%;
  }
}
@media (max-width: 768px) {
  .price-list__title {
    font-size: 30px;
  }
  .price-list__image {
    width: 42%;
    opacity: 0.9;
  }
}
@media (max-width: 480px) {
  .price-list {
    padding-top: 40px;
    padding-bottom: 80px;
    background: linear-gradient(271deg, #FFAB72 -39.97%, #FFF8F0 99.73%);
  }
  .price-list__image {
    display: none;
  }
  .price-list__container {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .price-list__content {
    max-width: none;
  }
  .price-list__title {
    margin-top: 16px;
    font-size: 24px;
  }
  .price-list__subtitle {
    max-width: none;
    margin-top: 16px;
    font-size: 20px;
  }
  .price-list__form {
    margin-top: 32px;
    gap: 16px;
  }
  .price-list__toggle-label {
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
  }
  .price-list__input {
    padding: 12px 16px;
    padding-left: 48px;
  }
  .price-list__submit {
    padding: 8px 16px;
    font-size: 20px;
  }
  .price-list .container {
    padding: 0 20px;
  }
}
/* ============ Для уютных домашних праздников (маркетплейсы) ============ */
.market {
  background: #FFFFFF;
  padding: 160px 0;
}
.market__head {
  text-align: center;
}
.market__title {
  color: #2D2420;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.market__subtitle {
  margin-top: 16px;
  color: #8A7E78;
  text-align: center;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.market__lead {
  margin-top: 48px;
  color: #726660;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.market__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.market__card {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(127, 138, 149, 0.1);
  background: rgba(255, 255, 253, 0.4);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
}
.market__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 221px;
}
.market__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.market__name {
  margin-top: 24px;
  color: #000;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.market__rating {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.market__stars {
  display: flex;
  align-items: center;
}
.market__stars img {
  width: 24px;
  height: 24px;
}
.market__score {
  color: #000;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.market__reviews {
  color: #000;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.market__like {
  margin-left: auto;
  display: inline-flex;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.market__like img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}
.market__like:hover img {
  opacity: 0.8;
}
.market__btn {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 16px;
  border: 1.5px solid currentColor;
  border-radius: 16px;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.market__btn--wb {
  color: #CB11AB;
  border: 2px solid #CB11AB;
}
.market__btn--wb:hover {
  background: #CB11AB;
  color: #FFFFFF;
}
.market__btn--ozon {
  color: #005BFF;
  border: 2px solid #005BFF;
}
.market__btn--ozon:hover {
  background: #005BFF;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .market {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .market__title {
    font-size: 28px;
  }
  .market__media {
    height: 240px;
  }
}
@media (max-width: 480px) {
  .market {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .market__head {
    text-align: left;
    text-align: start;
  }
  .market .container {
    padding: 0 20px;
  }
  .market__title {
    font-size: 24px;
    text-align: start;
  }
  .market__subtitle {
    font-size: 20px;
    text-align: start;
    margin-top: 8px;
  }
  .market__lead {
    margin-top: 16px;
    font-size: 16px;
  }
  .market__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  .market__card {
    padding: 32px 24px;
  }
  .market__media {
    height: 160px;
  }
  .market__name {
    margin-top: 16px;
    font-size: 16px;
  }
  .market__rating {
    flex-wrap: wrap;
    row-gap: 4px;
    margin-top: 24px;
  }
  .market__stars img {
    width: 24px;
    height: 24px;
  }
  .market__score {
    font-size: 16px;
  }
  .market__reviews {
    order: 3;
    flex-basis: 100%;
    font-size: 16px;
  }
  .market__like {
    order: 2;
  }
  .market__btn {
    margin-top: 24px;
    padding: 16px;
    font-size: 16px;
  }
}
/* ============ Подвал (Footer) ============ */
.footer {
  position: relative;
  background: #949494;
  color: #FFF;
  padding-top: 64px;
  padding-bottom: 64px;
}
.footer__container {
  position: relative;
  z-index: 2;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer__info {
  flex: 1;
  max-width: 500px;
}
.footer__title {
  color: #FFF;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 41.6px;
  letter-spacing: -0.8px;
}
.footer__subtitle {
  margin-top: 9px;
  color: #E3E2E1;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.footer__contacts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
}
.footer__contact-label {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer__contact-value {
  color: #E3E2E1;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.footer__note {
  margin-top: 16px;
  max-width: 384px;
  color: #6F5850;
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer__socials {
  margin-top: 98px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.footer__social-btn img {
  width: 28px;
  height: 28px;
  display: block;
}
.footer__social-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.3);
}
.footer__card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  border-radius: 24px;
  background: #EAEAEA;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.footer__card-title {
  color: #1A1A1A;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer__form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__field {
  position: relative;
  display: block;
}
.footer__field-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: inline-flex;
  color: #A0A0A0;
  pointer-events: none;
}
.footer__input {
  width: 100%;
  height: 52px;
  padding: 14px 20px 14px 54px;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: #FFF;
  color: #2E3448;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer__input::placeholder {
  color: #A0A0A0;
  font-weight: 400;
}
.footer__input:focus {
  outline: none;
  border-color: #F96515;
  box-shadow: 0 0 0 3px rgba(249, 101, 21, 0.15);
}
.footer__submit {
  margin-top: 8px;
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 9999px;
  background: #F96515;
  color: #FFF;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.footer__submit:hover {
  background: #E85A0D;
}
.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #FFF;
}
.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3E9C5A;
}
.footer__status-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .footer {
    padding-top: 64px;
    padding-bottom: 20px;
  }
  .footer__main {
    flex-direction: column;
    gap: 32px;
  }
  .footer__info {
    max-width: none;
  }
  .footer__title {
    font-size: 32px;
  }
  .footer__subtitle {
    font-size: 20px;
  }
  .footer__card {
    max-width: none;
    padding: 32px 20px;
    border-radius: 16px;
  }
  .footer__card-title {
    font-size: 20px;
  }
  .footer__bottom {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: none;
    padding-top: 0;
  }
  .footer__copyright {
    color: #E3E2E1;
    font-size: 11px;
  }
  .footer__links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    width: 100%;
  }
  .footer__link {
    color: #E3E2E1;
    font-size: 11px;
  }
  .footer__status {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer__title {
    font-size: 32px;
  }
  .footer__subtitle {
    font-size: 20px;
    margin-top: 0;
  }
  .footer .container {
    padding: 0 20px;
  }
  .footer__note {
    font-size: 11px;
    line-height: 14.4px;
    letter-spacing: 0.6px;
  }
  .footer__socials {
    margin-top: 32px;
  }
  .footer__input {
    border-radius: 16px;
  }
  .footer__contact-item {
    margin-bottom: 16px;
    gap: 5px;
  }
  .footer__contact-item:last-of-type {
    margin-bottom: 0;
  }
  .footer__social-btn {
    width: 48px;
    height: 48px;
  }
  .footer__social-btn img {
    width: 24px;
    height: 24px;
  }
}
/* ============ Сообщения форм (прайс-лист, футер) ============ */
.form-message {
  margin-top: 14px;
  font-family: "Gilroy", "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #E5484D;
}
.form-message--ok {
  color: #3E9C5A;
}

.price-list__input.is-invalid,
.footer__input.is-invalid {
  border-color: #E5484D;
  box-shadow: 0 0 0 1px #E5484D;
}

/*# sourceMappingURL=style.css.map */