@charset "UTF-8";
/* ===================================
   MAIN SCSS FILE
   KOREAMOTORS Project Styles
   =================================== */
/* ===================================
   BASE STYLES
   =================================== */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  color: black;
}

a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* ===================================
   HELVETICA NEUE FONT FACES
   =================================== */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/web-font/helvetica-neue-thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/web-font/helvetica-neue-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/web-font/helvetica-neue-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/web-font/helvetica-neue-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/helvetica-neue/web-font/helvetica-neue-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ===================================
   TEXT STYLES
   =================================== */
.text-brand {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.text-nav {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
}

.text-nav-number {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  font-size: 8px;
  line-height: 1.25;
}

.text-hero {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 300;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-large {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.1;
}

.text-caption {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.text-button {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
}

/* ===================================
   MOBILE TYPOGRAPHY ADAPTATIONS
   =================================== */
@media (max-width: 768px) {
  .text-brand {
    font-size: 20px;
  }
  .text-hero {
    font-size: 48px;
    line-height: 1.1;
  }
  .text-large {
    font-size: 16px;
    line-height: 1.2;
  }
  .text-caption {
    font-size: 14px;
    line-height: 1.3;
  }
  .text-nav {
    font-size: 11px;
  }
  .text-button {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .text-brand {
    font-size: 18px;
  }
  .text-hero {
    font-size: 36px;
    line-height: 1.1;
  }
  .text-large {
    font-size: 14px;
  }
  .text-caption {
    font-size: 13px;
  }
  .text-nav {
    font-size: 10px;
  }
  .text-button {
    font-size: 10px;
  }
}
/* ===================================
   RESPONSIVE FONT SIZES FOR HEADINGS
   =================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 12px;
  }
}
/* ===================================
   BASE COMPONENTS
   =================================== */
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Visually Hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Button Reset */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Link Reset */
a {
  text-decoration: none;
  color: inherit;
}

/* List Reset */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Image Reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   SWIPER BUNDLE STYLES
   =================================== */
/* 
 * Swiper styles are loaded via CDN in HTML
 * This file is reserved for custom Swiper overrides
 */
/* ===================================
   REPEAT COMPONENTS
   Header, Footer & Adaptive
   =================================== */
/* ===================================
   HEADER STYLES
   =================================== */
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding: 18px 0;
  /* Header inside slider */
  /* Mobile header styles */
}
.header--in-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .header--mobile-active {
    background: #f5f4f3;
    z-index: 1001;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 43px;
}
@media (max-width: 1024px) {
  .header__inner {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    gap: 20px;
  }
}

/* ===================================
   LEFT SIDE - LOGO & NAVIGATION
   =================================== */
.header__left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__left {
    gap: 20px;
  }
}

.header__logo {
  flex-shrink: 0;
}

.header__brand {
  margin: 0;
  color: #ffffff;
  /* Mobile brand color change */
}
@media (max-width: 480px) {
  .header__brand {
    font-size: 16px;
  }
}
.header--mobile-active .header__brand {
  color: #2d2d2d;
}

/* ===================================
   NAVIGATION
   =================================== */
.header__nav {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  height: 21px;
  flex-shrink: 0;
}

.nav-link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #d3d3d3;
  transition: color 0.3s ease;
  height: 100%;
  white-space: nowrap;
}
.nav-link:hover {
  color: #2d2d2d;
}

.nav-item--active .nav-link {
  color: #ffffff;
}

.nav-text {
  display: block;
  margin-top: 4px;
  line-height: 17px;
  white-space: nowrap;
}

.nav-number {
  display: block;
  margin-left: 1px;
  margin-top: 0;
  line-height: 10px;
  color: inherit;
  white-space: nowrap;
}

/* ===================================
   RIGHT SIDE - SOCIAL & ACTIONS
   =================================== */
.header__right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__right {
    gap: 12px;
  }
}

/* ===================================
   MOBILE ACTIONS
   =================================== */
.header__mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .header__mobile-actions {
    display: flex;
  }
}

.btn-mobile-currency {
  width: 44px;
  height: 44px;
  background: #f5f4f3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.btn-mobile-currency:hover {
  background: #eeeeee;
}
.header--mobile-active .btn-mobile-currency {
  background: #ffffff;
}
.btn-mobile-currency.active {
  background: #ff462e !important;
}
.btn-mobile-currency.active .btn-mobile-currency__icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%) hue-rotate(321deg) brightness(105%) contrast(104%);
}
.btn-mobile-currency__icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(7%) saturate(784%) hue-rotate(314deg) brightness(96%) contrast(89%);
}

.btn-mobile-favourite {
  width: 44px;
  height: 44px;
  background: #f5f4f3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  position: relative;
}
.btn-mobile-favourite:hover {
  background: #eeeeee;
}
.header--mobile-active .btn-mobile-favourite {
  background: #ffffff;
}
.btn-mobile-favourite.active {
  background: #ffffff !important;
}
.btn-mobile-favourite__icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(7%) saturate(784%) hue-rotate(314deg) brightness(96%) contrast(89%);
}

.btn-mobile-burger {
  width: 44px;
  height: 44px;
  background: #f5f4f3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.btn-mobile-burger:hover {
  background: #eeeeee;
}
.header--mobile-active .btn-mobile-burger {
  background: #ffffff;
}
.btn-mobile-burger__icon {
  width: 20px;
  height: 20px;
}

/* ===================================
   SOCIAL SECTION
   =================================== */
.header__social {
  display: flex;
  align-items: start;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .header__social {
    display: none;
  }
}

.social-text {
  font-family: "Onest", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #f5f5f5;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.social-text::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
  transform: scaleX(1);
  transform-origin: left center;
  transition: none;
  z-index: 1;
}

.social-arrow {
  content: "";
  background-image: url(../../assets/image/icons/link-arrow-white-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__social:hover .social-text::after {
  animation: underline-hide-show 0.4s ease forwards;
}
.header__social:hover .social-arrow {
  animation: arrow-move 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.header__social:not(:hover) .social-text::after {
  animation: underline-reverse 0.4s ease forwards;
}
.header__social:not(:hover) .social-arrow {
  animation: arrow-reverse 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes underline-hide-show {
  0% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right center;
  }
}
@keyframes underline-reverse {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes arrow-move {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateX(20px) translateY(10px);
    opacity: 0;
  }
  60% {
    transform: translateX(-20px) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
@keyframes arrow-reverse {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-20px) translateY(-10px);
    opacity: 0;
  }
  60% {
    transform: translateX(20px) translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
@keyframes arrow-slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrow-slide-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes text-slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes text-slide-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes favorite-button-pulse-hover {
  0% {
    transform: scale(1);
  }
  41% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.05);
  }
  57% {
    transform: scale(1.15);
  }
  72% {
    transform: scale(1.08);
  }
  82% {
    transform: scale(1.12);
  }
  92% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes favorite-button-pulse-leave {
  0% {
    transform: scale(1);
  }
  8% {
    transform: scale(1.05);
  }
  18% {
    transform: scale(1.08);
  }
  28% {
    transform: scale(1.05);
  }
  38% {
    transform: scale(1.02);
  }
  58% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes favorite-heart-slide-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(25px);
    opacity: 0;
  }
}
@keyframes favorite-heart-bounce-down {
  0% {
    transform: translate(-50%, -50%) translateY(-25px);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  30% {
    transform: translate(-50%, -50%) translateY(4px);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) translateY(-2px);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) translateY(1px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }
}
@keyframes favorite-heart-slide-up {
  0% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(-25px);
    opacity: 0;
  }
}
@keyframes favorite-heart-bounce-up {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
  50% {
    transform: translateY(2px);
    opacity: 1;
  }
  70% {
    transform: translateY(-1px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===================================
   ACTIONS SECTION
   =================================== */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 768px) {
  .header__actions {
    display: none; /* Скрываем desktop действия на мобильных */
  }
}

/* ===================================
   BURGER MENU
   =================================== */
.burger-menu {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fafafa;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  visibility: hidden;
}
.burger-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.burger-menu__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
.burger-menu__header {
  padding: 12px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #ededed;
}
.burger-menu__nav {
  flex: 1;
  margin-bottom: 60px;
}
.burger-menu__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.burger-menu__nav-item {
  margin-bottom: 45px;
  position: relative;
}
.burger-menu__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: -16px;
  right: -16px;
  height: 1px;
  background: #ededed;
}
.burger-menu__nav-link {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.19;
  text-transform: capitalize;
  color: #2d2d2d;
  text-decoration: none;
  display: block;
}
.burger-menu__nav-link:hover {
  color: #ff462e;
}
.burger-menu__nav-link--active {
  color: #2d2d2d;
  font-weight: 500;
}
.burger-menu__footer {
  margin-top: auto;
  padding-bottom: 40px;
}
.burger-menu__social {
  margin-bottom: 60px;
}
.burger-menu__social-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.burger-menu__social-link {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: capitalize;
  color: #2d2d2d;
  text-decoration: none;
}
.burger-menu__social-link:hover {
  color: #ff462e;
}
.burger-menu__contacts {
  text-align: center;
}
.burger-menu__phone {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.19;
  text-transform: capitalize;
  color: #2d2d2d;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.burger-menu__phone:hover {
  color: #ff462e;
}
.burger-menu__email {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.19;
  text-transform: lowercase;
  color: #2d2d2d;
  text-decoration: none;
  display: block;
}
.burger-menu__email:hover {
  color: #ff462e;
}

/* ===================================
   NEW: CURRENCY WRAPPER
   =================================== */
.currency-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ===================================
   CURRENCY BUTTON
   =================================== */
.btn-currency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 147px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
}
.btn-currency:hover .btn-currency__arrow {
  animation: arrow-slide-down 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-currency:hover .btn-currency__text {
  animation: text-slide-down 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-currency:not(:hover) .btn-currency__arrow {
  animation: arrow-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-currency:not(:hover) .btn-currency__text {
  animation: text-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-currency:active {
  transform: translateY(0);
}

.btn-currency__icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-currency__circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}

.btn-currency__arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}

.btn-currency__text {
  color: #fff;
  flex: 1;
  white-space: nowrap;
}

/* ===================================
   FAVORITES BUTTON
   =================================== */
.btn-favorite {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.btn-favorite:hover {
  background: #ff462e;
  animation: favorite-button-pulse-hover 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.btn-favorite:hover .btn-favorite__icon {
  animation: favorite-heart-slide-out 0.25s ease-out forwards;
}
.btn-favorite:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-25px);
  width: 20px;
  height: 20px;
  background-image: url("../image/icons/heart-filled.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: favorite-heart-bounce-down 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s forwards;
}
.btn-favorite:not(:hover) {
  animation: favorite-button-pulse-leave 0.75s ease-out forwards;
}
.btn-favorite:not(:hover) .btn-favorite__icon {
  animation: favorite-heart-bounce-up 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s forwards;
}
.btn-favorite:not(:hover)::after {
  animation: favorite-heart-slide-up 0.25s ease-out forwards;
}
.btn-favorite:active {
  transform: scale(0.95);
}

.btn-favorite__icon {
  width: 20px;
  height: 20px;
}

.favorites-counter {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff462e;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .header__inner {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    gap: 20px;
  }
  .header__left {
    gap: 16px;
  }
  .header__right {
    gap: 12px;
  }
  .btn-currency {
    width: 120px;
    padding: 8px 14px 8px 8px;
  }
  .btn-currency__text {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .header {
    height: 70px;
  }
  .btn-currency {
    width: 100px;
    padding: 6px 12px 6px 6px;
  }
  .btn-currency__icon {
    width: 24px;
    height: 24px;
  }
  .btn-currency__circle {
    width: 24px;
    height: 24px;
  }
  .btn-currency__arrow {
    width: 14px;
    height: 14px;
  }
  .btn-favorite {
    width: 40px;
    height: 40px;
  }
  .btn-favorite__icon {
    width: 18px;
    height: 18px;
  }
}
/* ===================================
   CURRENCY DROPDOWN
   =================================== */
.currency-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 359px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.currency-dropdown.show {
  display: flex;
  animation: fadeInScale 0.3s ease-out forwards;
  transform: translateY(10px);
  opacity: 1 !important;
}
.currency-dropdown.hide {
  animation: fadeOutScale 0.3s ease-out forwards;
}
@media (max-width: 768px) {
  .currency-dropdown {
    width: 250px;
    left: auto;
    right: 0;
  }
}
@media (max-width: 480px) {
  .currency-dropdown {
    width: 220px;
    left: auto;
    right: 0;
  }
}

.currency-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Onest", "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
.currency-dropdown__item:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.currency-dropdown__item:first-child {
  padding-top: 0;
}
.currency-dropdown__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 480px) {
  .currency-dropdown__item {
    font-size: 14px;
    gap: 6px;
  }
}

.currency-dropdown__flag {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .currency-dropdown__flag {
    width: 20px;
    height: 20px;
  }
}

.currency-dropdown__code {
  font-weight: 500;
  flex-shrink: 0;
}

.currency-dropdown__value {
  font-weight: 700;
  margin-left: auto;
}

.currency-dropdown__target {
  font-weight: 500;
  color: #888;
}

.currency-dropdown__date {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  margin-left: 8px;
}
@media (max-width: 480px) {
  .currency-dropdown__date {
    font-size: 10px;
    margin-left: 4px;
  }
}

/* Анимации для появления/исчезания плашки */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(0px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(10px);
  }
}
@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: scale(1) translateY(10px);
  }
  to {
    opacity: 0;
    transform: scale(0.95) translateY(0px);
  }
}
/* ===================================
   MOBILE CURRENCY DROPDOWN
   =================================== */
.mobile-currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  background: #f3f3f3;
  border-radius: 10px;
  z-index: 1001;
  display: none;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) {
  .mobile-currency-dropdown {
    display: none !important;
  }
}
.mobile-currency-dropdown.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-currency-dropdown.hide {
  transform: translateY(-10px);
  opacity: 0;
}
.mobile-currency-dropdown__content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-currency-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
}
.mobile-currency-dropdown__flag {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobile-currency-dropdown__code {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  min-width: 31px;
}
.mobile-currency-dropdown__value {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-left: 18px;
}
.mobile-currency-dropdown__target {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin-left: 12px;
}
.mobile-currency-dropdown__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-left: auto;
  white-space: nowrap;
}

/* ===================================
   MOBILE CURRENCY BUTTON ACTIVE STATES
   =================================== */
.btn-mobile-currency.active {
  background: #ff462e !important;
}
.btn-mobile-currency.active .btn-mobile-currency__icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%) hue-rotate(321deg) brightness(105%) contrast(104%);
}

.header.header--scrolled {
  background: #fff;
  transition: background 0.3s ease;
}
.header.header--scrolled .header__brand {
  color: #2d2d2d;
}
.header.header--scrolled .nav-item--active .nav-link {
  color: #2d2d2d;
}
.header.header--scrolled .social-text {
  color: #2d2d2d;
}
.header.header--scrolled .social-icon {
  fill: #2d2d2d;
}
.header.header--scrolled .btn-favorite__icon {
  fill: #2d2d2d;
}
.header.header--scrolled .social-text::after {
  background-color: #2d2d2d;
}
.header.header--scrolled .social-arrow {
  background-image: url(../../assets/image/icons/link-arrow-down.svg);
}
.header.header--scrolled .btn-currency {
  background-color: #F5F4F3;
}
.header.header--scrolled .btn-currency__text {
  color: #2d2d2d;
}
.header.header--scrolled .btn-favorite {
  background-color: #F5F4F3;
}
.header.header--scrolled .btn-favorite:hover {
  background-color: #ff462e;
}

/* ===================================
   HEADER ADAPTIVE STYLES
   =================================== */
/* Responsive header styles will be added here */
/* ===================================
   FOOTER STYLES
   =================================== */
.footer {
  background-color: #2d2d2d;
  display: flex;
  flex-direction: column;
  padding: 60px 0 0;
  color: #fff;
  font-family: "Onest", sans-serif;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: auto;
  flex-grow: 1;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .footer__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 40px;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.footer__contact-info {
  flex-basis: 250px;
  flex-shrink: 0;
  margin-right: 40px;
}
@media (max-width: 1024px) {
  .footer__contact-info {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.footer__phone {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 8px;
  white-space: nowrap;
}
.footer__email {
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 24px;
}
.footer__policy-link {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-decoration: underline !important;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer__policy-link:hover {
  opacity: 1;
}
.footer__navigation, .footer__catalog, .footer__social-media {
  flex-grow: 1;
  flex-basis: 180px;
}
@media (max-width: 1024px) {
  .footer__navigation, .footer__catalog, .footer__social-media {
    flex-basis: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .footer__navigation, .footer__catalog, .footer__social-media {
    flex-basis: 100%;
  }
}
.footer__heading {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 12px;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__list a {
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #d9d9d9;
}
.footer__brand-logo {
  margin-top: auto;
  text-align: center;
  bottom: 0;
}
.footer__brand-logo p {
  font-family: "Onest", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: -15px;
  text-transform: lowercase;
  color: #fff;
  margin: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 1600px) {
  .footer__brand-logo p {
    font-size: 210px;
  }
}
@media (min-width: 1000px) and (max-width: 1600px) {
  .footer__brand-logo p {
    font-size: clamp(160px, 160px + 50 * (100vw - 1000px) / 600, 210px);
  }
}

/* ===================================
   FOOTER ADAPTIVE STYLES
   =================================== */
/* Responsive footer styles will be added here */
/* ===================================
   PAGE STYLES
   =================================== */
/* Home Page */
/* ===================================
   HOME PAGE STYLES
   Hero Slider Section
   =================================== */
/* ===================================
   HERO SLIDER SECTION
   =================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-slider {
    height: 812px; /* Полная высота экрана для мобильных */
  }
}
@media (max-width: 480px) {
  .hero-slider {
    height: 100vh; /* Для очень маленьких экранов */
    min-height: 812px;
  }
}

.hero-slider__container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===================================
   SWIPER CONFIGURATION
   =================================== */
.hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ===================================
   SLIDE BACKGROUND & IMAGE
   =================================== */
.hero-slide__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide__image {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 65%;
     object-position: 50% 65%;
  display: block;
}
@media (max-width: 768px) {
  .hero-slide__image {
    height: 812px;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
@media (max-width: 480px) {
  .hero-slide__image {
    height: 100vh;
    min-height: 812px;
    -o-object-position: 60% 50%;
       object-position: 60% 50%;
  }
}

/* ===================================
   RESPONSIVE IMAGES
   Отдельные изображения для мобильной и десктопной версий
   =================================== */
.hero-slide__image--desktop {
  display: block;
}
@media (max-width: 768px) {
  .hero-slide__image--desktop {
    display: none;
  }
}

.hero-slide__image--mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero-slide__image--mobile {
    display: block;
  }
}

.hero-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-slide__overlay {
    background: rgba(0, 0, 0, 0.3);
  }
}

/* ===================================
   СТАТИЧНЫЙ КОНТЕНТ ПОВЕРХ СЛАЙДЕРА
   =================================== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #f5f5f5;
  pointer-events: none;
}
.hero-content .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .hero-content .container {
    padding-bottom: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .hero-content .container {
    padding-bottom: 100px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.hero-content__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .hero-content__wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-content__wrapper {
    gap: 16px;
  }
}

.hero-content__left-column {
  flex: 1;
  max-width: 650px;
}
@media (max-width: 768px) {
  .hero-content__left-column {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

.hero-content__right-column {
  flex: 0 0 auto;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .hero-content__right-column {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-bottom: 0;
    gap: 30px;
    flex-direction: column-reverse;
  }
}

.hero-content__title {
  margin: 0 0 20px 0;
  color: #f5f5f5;
}
@media (max-width: 768px) {
  .hero-content__title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    order: 2;
  }
}
@media (max-width: 480px) {
  .hero-content__title {
    font-size: 28px;
    margin-bottom: 0;
  }
}

.hero-content__subtitle {
  margin: 0 0 24px 0;
  color: #f5f5f5;
}
@media (max-width: 768px) {
  .hero-content__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    order: 1;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .hero-content__subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

.hero-content__description {
  margin: 0;
  color: #f5f5f5;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero-content__description {
    font-size: 14px;
    order: 3;
  }
}
@media (max-width: 480px) {
  .hero-content__description {
    font-size: 13px;
  }
}

/* ===================================
   HERO BUTTON
   =================================== */
.hero-content__button {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .hero-content__button {
    margin-top: 30px;
    width: 100%;
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .hero-content__button {
    margin-top: 0;
    max-width: 180px;
  }
}

.btn-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 18px 8px 8px;
  background: #f5f4f3;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 192px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
}
.btn-hero:hover {
  background: #eeeeee;
}
.btn-hero:hover .btn-hero__arrow {
  animation: hero-arrow-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-hero:hover .btn-hero__main {
  animation: hero-text-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-hero:not(:hover) .btn-hero__arrow {
  animation: hero-arrow-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-hero:not(:hover) .btn-hero__main {
  animation: hero-text-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-hero:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .btn-hero {
    width: 170px;
    padding: 8px 14px 8px 8px;
  }
}

.btn-hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn-hero__main {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  text-transform: uppercase;
  color: #2d2d2d;
  display: block;
}

.btn-hero__icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-hero__circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}

.btn-hero__arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}

/* ===================================
   HERO BUTTON ANIMATIONS
   =================================== */
@keyframes hero-arrow-slide-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes hero-arrow-slide-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-8px);
    opacity: 0;
  }
  51% {
    transform: translateX(8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes hero-text-slide-right {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hero-text-slide-left {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===================================
   MOBILE ADAPTATIONS
   =================================== */
@media (max-width: 1000px) {
  /* Контейнер для всех секций */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  /* Отступы секций */
  section {
    padding-bottom: 60px !important;
  }
  /* Заголовки секций */
  h2 {
    font-size: 24px;
    line-height: 1.2 !important;
  }
  h3 {
    font-size: 20px;
    line-height: 1.2 !important;
  }
  /* ===================================
     CATALOG MOBILE FIXES
     =================================== */
  /* ===================================
     REVIEW SECTION CENTER FIX
     =================================== */
  .review__header-row {
    justify-content: center !important;
    width: 100% !important;
  }
  /* ===================================
     MOBILE ELEMENTS HIDING
     =================================== */
  .advantages__card-icon {
    display: none !important;
  }
  .review__navigation {
    display: none !important;
  }
  .video__navigation {
    display: none !important;
  }
  .faq-home__background::before {
    display: none !important;
  }
  /* ===================================
     MOBILE SLIDER ADAPTATION
     =================================== */
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  .swiper-pagination {
    position: absolute !important;
    bottom: 80px !important;
    left: 20px !important;
    right: auto !important;
    width: auto !important;
    display: flex !important;
    gap: 12px !important;
  }
  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: background 0.3s ease !important;
  }
  .swiper-pagination-bullet-active {
    background: #ffffff !important;
  }
  .slider-content {
    padding: 20px !important;
    padding-bottom: 120px !important;
  }
  .slider-content__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }
  .slider-content__subtitle {
    font-size: 14px !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
  }
  .slider-content__button {
    width: 200px !important;
    padding: 8px 18px 8px 8px !important;
  }
  /* ===================================
     MOBILE FOOTER
     =================================== */
  .footer-mobile {
    display: block !important;
    background: #2d2d2d !important;
    color: #ffffff !important;
    padding: 40px 20px 0 20px !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .footer-mobile__contact {
    margin-bottom: 40px !important;
  }
  .footer-mobile__phone {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    letter-spacing: -4% !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 8px !important;
  }
  .footer-mobile__email {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    letter-spacing: -4% !important;
    text-transform: lowercase !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: block !important;
  }
  .footer-mobile__nav-group {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 60px !important;
  }
  .footer-mobile__nav-column {
    flex: 1 !important;
  }
  .footer-mobile__nav-title {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
  }
  .footer-mobile__nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .footer-mobile__nav-link {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    text-transform: uppercase !important;
    color: #d9d9d9 !important;
    text-decoration: none !important;
  }
  .footer-mobile__social {
    margin-bottom: 40px !important;
  }
  .footer-mobile__social-title {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
  }
  .footer-mobile__social-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 22px !important;
  }
  .footer-mobile__social-link {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    text-transform: uppercase !important;
    color: #d9d9d9 !important;
    text-decoration: none !important;
  }
  .footer-mobile__policy {
    margin-bottom: 40px !important;
    text-align: right !important;
  }
  .footer-mobile__policy-link {
    font-family: "Helvetica Neue", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.19 !important;
    color: #d9d9d9 !important;
    text-decoration: none !important;
    display: inline-block !important;
    width: 156px !important;
  }
  .footer-mobile__marquee {
    position: relative !important;
    height: 163px !important;
    overflow: hidden !important;
    margin: 0 -20px !important;
  }
  .footer-mobile__marquee-text {
    font-family: "Onest", sans-serif !important;
    font-size: 128px !important;
    font-weight: 900 !important;
    line-height: 1.27 !important;
    letter-spacing: -4% !important;
    text-transform: lowercase !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    position: absolute !important;
    top: 0 !important;
    animation: marquee 15s linear infinite !important;
  }
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .footer-desktop {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .footer-mobile {
    display: none !important;
  }
}
@media (max-width: 480px) {
  section {
    padding-bottom: 40px !important;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .catalog-title__text::before {
    font-size: 20px;
  }
  .btn-hero__main,
  .btn-stock__main,
  .btn-calculation__main {
    font-size: 11px !important;
  }
}
/* ===================================
   RESPONSIVE FONT SIZES FOR HEADINGS
   =================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 12px;
  }
}
/* ===================================
   CATALOG SECTION STYLES
   =================================== */
.catalog-section {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .catalog-section {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .catalog-section {
    padding: 40px 0;
  }
}

/* ===================================
   CATALOG HEADER
   =================================== */
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.catalog-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.catalog-title__icon {
  width: 8px;
  height: 8px;
  background-image: url("../image/icons/plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.catalog-title__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
}
@media (max-width: 768px) {
  .catalog-title__text {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .catalog-title__text {
    font-size: 18px;
  }
}

.catalog-link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2d2d2d;
  cursor: pointer;
}
.catalog-link__text {
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.catalog-link__text::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2d2d2d;
  transform: scaleX(1);
  transform-origin: left center;
  transition: none;
  z-index: 1;
}
.catalog-link__arrow {
  width: 8px;
  height: 8px;
  margin-left: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0) translateY(0);
}
.catalog-link:hover .catalog-link__text::after {
  animation: catalog-underline-hide-show 0.4s ease forwards;
}
.catalog-link:hover .catalog-link__arrow {
  animation: catalog-arrow-move 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.catalog-link:not(:hover) .catalog-link__text::after {
  animation: catalog-underline-reverse 0.4s ease forwards;
}
.catalog-link:not(:hover) .catalog-link__arrow {
  animation: catalog-arrow-reverse 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ===================================
   CATALOG GRID
   =================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===================================
   CATALOG CARD
   =================================== */
.catalog-card {
  background: #f5f4f3;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media (max-width: 640px) {
  .catalog-card {
    flex-direction: row;
    padding: 16px;
    gap: 16px;
    align-items: center;
    max-height: 130px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  .catalog-card:hover {
    background: #eeeeee;
    transform: translateY(-2px);
  }
  .catalog-card:active {
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .catalog-card {
    padding: 12px;
    gap: 12px;
  }
}
.catalog-card:hover .catalog-card__image {
  transform: scale(1.15);
  filter: blur(1px);
}
.catalog-card__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .catalog-card__link {
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .catalog-card__link {
    gap: 12px;
  }
}

.catalog-card__image-container {
  position: relative;
  width: 100%;
  height: 149px;
  border-radius: 7px;
  overflow: hidden;
  background: #e0e0e0;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .catalog-card__image-container {
    width: 130px;
    height: 100%;
  }
}
.catalog-card__image-container .catalog-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.catalog-card__image-container .catalog-card__year {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px;
  background: rgba(3, 3, 3, 0.2);
  border-radius: 40px;
  color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .catalog-card__image-container .catalog-card__year {
    top: 5px;
    left: 5px;
    right: auto;
    padding: 3px 8px;
    font-size: 10px;
    gap: 4px;
  }
}
.catalog-card__image-container .catalog-card__year .calendar-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
@media (max-width: 640px) {
  .catalog-card__image-container .catalog-card__year .calendar-icon {
    width: 10px;
    height: 10px;
  }
}

.catalog-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
}
@media (max-width: 640px) {
  .catalog-card__content {
    height: 100%;
    gap: 8px;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .catalog-card__content {
    gap: 6px;
  }
}

.catalog-card__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
@media (max-width: 640px) {
  .catalog-card__title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .catalog-card__title {
    font-size: 14px;
  }
}

.catalog-card__specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 640px) {
  .catalog-card__specs {
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .catalog-card__specs {
    gap: 4px;
  }
}

.catalog-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .catalog-card__spec {
    gap: 8px;
  }
}
.catalog-card__spec-label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.21;
  color: #2d2d2d;
}
@media (max-width: 640px) {
  .catalog-card__spec-label {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .catalog-card__spec-label {
    font-size: 11px;
  }
}
.catalog-card__spec-value {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #2d2d2d;
  text-align: right;
}
@media (max-width: 640px) {
  .catalog-card__spec-value {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .catalog-card__spec-value {
    font-size: 11px;
  }
}

.catalog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .catalog-card__footer {
    align-items: end;
    gap: 8px;
  }
}

.catalog-card__price {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
@media (max-width: 640px) {
  .catalog-card__price {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .catalog-card__price {
    font-size: 14px;
  }
}

.catalog-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 640px) {
  .catalog-card__actions {
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .catalog-card__actions {
    gap: 4px;
  }
}

.catalog-card__share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 640px) {
  .catalog-card__share {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .catalog-card__share {
    width: 26px;
    height: 26px;
  }
}
.catalog-card__share .share-icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 640px) {
  .catalog-card__share .share-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .catalog-card__share .share-icon {
    width: 14px;
    height: 14px;
  }
}
.catalog-card__share:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.catalog-card__button {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
  color: #2d2d2d;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}
@media (max-width: 640px) {
  .catalog-card__button {
    font-size: 10px;
    display: none;
  }
}
@media (max-width: 480px) {
  .catalog-card__button {
    font-size: 9px;
  }
}
.catalog-card__button:hover {
  color: #ff462e;
}

.catalog-card__favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 640px) {
  .catalog-card__favorite {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .catalog-card__favorite {
    width: 20px;
    height: 20px;
  }
}
.catalog-card__favorite .heart-icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 640px) {
  .catalog-card__favorite .heart-icon {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .catalog-card__favorite .heart-icon {
    width: 10px;
    height: 10px;
  }
}
.catalog-card__favorite.liked {
  background: #f5f4f3;
}
.catalog-card__favorite.liked .heart-icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.catalog-card__main-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 3px 8px 16px;
  background: #ffffff;
  border-radius: 30px;
  width: 141px;
  height: 34px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .catalog-card {
    padding: 10px;
  }
  .catalog-card__share {
    width: 32px;
    height: 32px;
  }
  .catalog-card__share .share-icon {
    width: 16px;
    height: 16px;
  }
  .catalog-card__main-actions {
    width: 130px;
    height: 32px;
    padding: 6px 3px 6px 12px;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .catalog-card__main-actions {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .catalog-card__button {
    font-size: 11px;
  }
  .catalog-card__favorite {
    width: 26px;
    height: 26px;
  }
  .catalog-card__favorite .heart-icon {
    width: 14px;
    height: 14px;
  }
}
/* ===================================
   CATALOG LINK ANIMATIONS
   =================================== */
@keyframes catalog-underline-hide-show {
  0% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right center;
  }
}
@keyframes catalog-underline-reverse {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes catalog-arrow-move {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateX(10px) translateY(-10px);
    opacity: 0;
  }
  60% {
    transform: translateX(-10px) translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
@keyframes catalog-arrow-reverse {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-10px) translateY(10px);
    opacity: 0;
  }
  60% {
    transform: translateX(10px) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 40px 0;
  }
}

.about::before {
  content: "";
  position: absolute;
  width: 318px;
  height: 618px;
  background-image: url("../image/icons/about-cmp.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about__content {
  display: grid;
  grid-template-columns: 223px 1fr;
  gap: 109px;
  align-items: start;
}
@media (max-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about__content {
    gap: 30px;
  }
}

/* ===================================
   LEFT SIDE
   =================================== */
.about__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  .about__left {
    gap: 30px;
  }
}

.about__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

.about__plus {
  width: 8px;
  height: 8px;
  background-image: url("../image/icons/plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.about__main-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0 0 60px 0;
  max-width: 828px;
  position: relative;
}
.about__main-text::after {
  content: "";
  float: right;
  width: 260px;
  height: 38px;
  shape-outside: inset(0 0 0 0);
}
@media (max-width: 768px) {
  .about__main-text {
    font-size: 28px;
    margin: 0 0 40px 0;
  }
  .about__main-text::after {
    width: 100px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .about__main-text {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .about__main-text::after {
    width: 50px;
    height: 29px;
  }
}

.about__main-text-bold {
  font-weight: 500;
  padding-left: 240px;
}
@media (max-width: 1024px) {
  .about__main-text-bold {
    padding-left: 0;
  }
}

.about__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #2d2d2d;
  padding-top: 110px;
  margin: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .about__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about__subtitle {
    font-size: 16px;
  }
}

/* ===================================
   RIGHT SIDE
   =================================== */
.about__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.about__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 21px 0;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
@media (max-width: 768px) {
  .about__block {
    padding: 16px 0;
  }
}

.about__block:last-child {
  border-bottom: none;
}

.about__block-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.about__block-header {
  display: grid;
  grid-template-columns: 220px 1fr 70px;
  align-items: start;
  gap: 0 32px;
  padding: 0;
  min-height: 64px;
}
@media (max-width: 1024px) {
  .about__block-header {
    grid-template-columns: 1fr;
    gap: 16px 0;
    min-height: unset;
  }
}

.about__block-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  align-self: start;
}

.about__block-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #6b6b6b;
  margin: 0;
  align-self: start;
}

.about__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background: #f5f4f3;
  border-radius: 40px;
  flex-shrink: 0;
  align-self: start;
}

.about__badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #ff462e;
  margin: 0;
}

.about__summary {
  margin-top: 40px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #2d2d2d;
}
@media (max-width: 768px) {
  .about__summary {
    font-size: 18px;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .about__summary {
    font-size: 16px;
    margin-top: 24px;
  }
}

.stock {
  padding: 120px 0;
  background: #fff;
  position: relative;
}
.stock__plus {
  width: 8px;
  height: 8px;
  background-image: url(../image/icons/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.stock__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}
.stock__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 1;
}
.stock__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.stock__description {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  max-width: 528px;
  order: 2;
  width: 100%;
}
.stock__navigation {
  display: flex;
  gap: 12px;
  align-items: center;
  order: 3;
}
.stock__nav-btn {
  width: 30.5px;
  height: 30.5px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.stock__nav-btn:active {
  transform: scale(0.95);
}
.stock__nav-btn svg {
  width: 16px;
  height: 16px;
}
.stock__nav-btn svg path {
  transition: stroke 0.3s ease;
}
.stock__nav-btn:hover svg path {
  stroke: #ff462e;
}
.stock__slider-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.stock__slider-container::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -278px;
  width: 560px;
  height: 707px;
  background-image: url("../image/icons/stock.svg");
  background-repeat: no-repeat;
  background-size: 560px 707px;
  background-position: 0 0;
  z-index: -1;
  pointer-events: none;
}
.stock__pagination {
  margin-bottom: 20px;
}

.stock-swiper {
  width: 100%;
  height: 542px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.stock-slide {
  height: 542px;
}
.stock-slide__content {
  display: flex;
  height: 100%;
  position: relative;
}
.stock-slide__left {
  flex: 0 0 572px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stock-slide__right {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
}
.stock-slide__period {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.stock-slide__date {
  color: #ff462e;
}
.stock-slide__bottom {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-top: auto;
}
.stock-slide__cta {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0;
}
.stock-slide__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  max-width: 512px;
}
.stock-slide__button {
  align-self: flex-start;
}
.stock-slide__image {
  max-width: 580px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stock-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 18px 8px 8px;
  background: #f5f4f3;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 200px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
}
.btn-stock:hover {
  background: #eeeeee;
}
.btn-stock:hover .btn-stock__arrow {
  animation: stock-arrow-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-stock:hover .btn-stock__main {
  animation: stock-text-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-stock:not(:hover) .btn-stock__arrow {
  animation: stock-arrow-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-stock:not(:hover) .btn-stock__main {
  animation: stock-text-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-stock:active {
  transform: translateY(0);
}
.btn-stock__icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-stock__circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}
.btn-stock__arrow {
  position: relative;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.btn-stock__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.btn-stock__main {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  text-transform: uppercase;
  color: #2d2d2d;
  display: block;
  text-align: right;
}

@keyframes stock-arrow-slide-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes stock-arrow-slide-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-8px);
    opacity: 0;
  }
  51% {
    transform: translateX(8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes stock-text-slide-right {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes stock-text-slide-left {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.stock-pagination {
  display: flex;
  bottom: 20px;
}
.stock-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 70, 46, 0.3);
  border-radius: 50%;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.stock-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff462e;
  transform: scale(1.2);
}
.stock-pagination .swiper-pagination-bullet:hover {
  background: #ff462e;
  transform: scale(1.1);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: unset !important;
  top: 274px !important;
  left: unset !important;
  width: unset !important;
}

@media (max-width: 1200px) {
  .stock__description {
    max-width: 400px;
  }
  .stock .stock-slide__left {
    flex: 0 0 500px;
  }
}
@media (max-width: 992px) {
  .stock {
    padding: 80px 0;
  }
  .stock__header {
    margin-bottom: 60px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .stock__navigation {
    align-self: flex-end;
    order: 4;
  }
  .stock__description {
    order: 2;
  }
  .stock__pagination {
    bottom: 250px;
  }
  .stock .stock-swiper {
    height: 450px;
  }
  .stock .stock-slide {
    height: 450px;
  }
  .stock .stock-slide__content {
    flex-direction: column;
  }
  .stock .stock-slide__left {
    flex: none;
    padding: 20px;
  }
  .stock .stock-slide__bottom {
    gap: 20px;
  }
  .stock .stock-slide__right {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .stock {
    padding: 60px 0;
  }
  .stock__header {
    margin-bottom: 40px;
  }
  .stock__title {
    font-size: 14px;
  }
  .stock__description {
    font-size: 18px;
  }
  .stock__nav-btn {
    width: 28px;
    height: 28px;
  }
  .stock__nav-btn svg {
    width: 12px;
    height: 12px;
  }
  .stock__pagination {
    bottom: 200px;
    left: 20px;
  }
  .stock .stock-swiper {
    height: 400px;
  }
  .stock .stock-slide {
    height: 400px;
  }
  .stock .stock-slide__left {
    padding: 15px;
  }
  .stock .stock-slide__bottom {
    gap: 15px;
  }
  .stock .stock-slide__text {
    font-size: 18px;
  }
  .stock .stock-slide__period, .stock .stock-slide__cta {
    font-size: 14px;
  }
  .stock .stock-slide__image {
    width: 200px;
    height: 300px;
  }
  .stock .btn-stock {
    width: 180px;
    padding: 6px 16px 6px 6px;
  }
  .stock .btn-stock__main {
    font-size: 11px;
  }
}
.advantages {
  padding: 120px 0;
  background: #fff;
  position: relative;
}
.advantages__header {
  margin-bottom: 40px;
}
.advantages__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.advantages__plus {
  width: 8px;
  height: 8px;
  background-image: url("../image/icons/advantages-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.advantages__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  letter-spacing: 0.04em;
}
.advantages__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.advantages__subtitle-bold {
  font-weight: 700;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  position: relative;
}
.advantages__grid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 33.33%;
  width: 1px;
  height: calc(50% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.advantages__grid::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 66.66%;
  width: 1px;
  height: calc(50% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.advantages__grid .advantages__card:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -20px;
  right: -20px;
  height: 1px;
  background: #d9d9d9;
  z-index: 1;
}
.advantages__card {
  padding: 20px;
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.advantages__card:nth-child(1)::after, .advantages__card:nth-child(2)::after, .advantages__card:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d9d9d9;
}
.advantages__card:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -1px;
  width: 1px;
  height: calc(100% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.advantages__card:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -1px;
  width: 1px;
  height: calc(100% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.advantages__card-number {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.advantages__card-content {
  flex: 1;
  margin-bottom: 20px;
}
.advantages__card-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0 0 4px 0;
}
.advantages__card-description {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0;
}
.advantages__card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages__card-icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1200px) {
  .advantages__card {
    padding: 16px;
    min-height: 200px;
  }
  .advantages__card-icon {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
  .advantages__card-icon img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 992px) {
  .advantages {
    padding: 80px 0;
  }
  .advantages__subtitle {
    font-size: 28px;
    max-width: 100%;
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .advantages__grid::before {
    left: 50%;
    top: 20px;
    height: calc(100% - 40px);
  }
  .advantages__grid::after {
    display: none;
  }
  .advantages__grid .advantages__card:nth-child(2)::after,
  .advantages__grid .advantages__card:nth-child(4)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d9d9d9;
  }
  .advantages__grid .advantages__card:nth-child(3)::after {
    display: none;
  }
  .advantages__card {
    min-height: 180px;
  }
  .advantages__card:nth-child(4)::before, .advantages__card:nth-child(5)::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 60px 0;
  }
  .advantages__subtitle {
    font-size: 24px;
  }
  .advantages__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
  .advantages__grid::before {
    display: none;
  }
  .advantages__grid .advantages__card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d9d9d9;
  }
  .advantages__card {
    padding: 20px 16px;
    min-height: 140px;
  }
  .advantages__card-icon {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }
  .advantages__card-icon img {
    width: 28px;
    height: 28px;
  }
  .advantages__card-title {
    font-size: 14px;
  }
  .advantages__card-description {
    font-size: 12px;
  }
}
/* ===================================
   PROCESS SECTION STYLES
   Круговая схема процесса покупки
   =================================== */
.process {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .process {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  .process {
    padding: 60px 0;
  }
}

/* ===================================
   HEADER STYLES
   =================================== */
.process__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .process__header {
    margin-bottom: 60px;
  }
}

.process__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.process__plus {
  width: 8px;
  height: 8px;
  background-image: url("../image/icons/plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.process__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
@media (max-width: 768px) {
  .process__subtitle {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .process__subtitle {
    font-size: 24px;
  }
}

/* ===================================
   DIAGRAM CONTAINER
   =================================== */
.process__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .process__content {
    min-height: 700px;
  }
}
@media (max-width: 768px) {
  .process__content {
    min-height: 600px;
  }
}

.process__diagram {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================
   CIRCLE CONTAINER
   =================================== */
.process__circle {
  position: relative;
  width: 800px;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .process__circle {
    width: 700px;
    height: 700px;
  }
}
@media (max-width: 768px) {
  .process__circle {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 480px) {
  .process__circle {
    width: 350px;
    height: 350px;
  }
}

.process__circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process__steps {
  position: relative;
  width: 100%;
  height: 100%;
}

.process__step {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-350px) rotate(calc(-1 * var(--angle)));
}
@media (max-width: 1024px) {
  .process__step {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-300px) rotate(calc(-1 * var(--angle)));
  }
}
@media (max-width: 768px) {
  .process__step {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-220px) rotate(calc(-1 * var(--angle)));
  }
}
@media (max-width: 480px) {
  .process__step {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
  }
}

.process__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .process__step-number {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }
}
.process__step-number span {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #2d2d2d;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .process__step-number span {
    font-size: 14px;
  }
}
.process__step-number.active {
  background: #ff462e;
  border-color: #ff462e;
  transform: scale(1.2);
}
.process__step-number.active span {
  color: #ffffff;
  font-weight: 600;
}
.process__step-number.completed {
  background: #28a745;
  border-color: #28a745;
}
.process__step-number.completed span {
  color: #ffffff;
  font-weight: 500;
}
.process__step-number.upcoming {
  background: #f8f9fa;
  border-color: #dee2e6;
  opacity: 0.6;
}
.process__step-number.upcoming span {
  color: #6c757d;
}
.process__step-number.transitioning {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 70, 46, 0.3);
}
.process__step-number:hover:not(.active) {
  transform: scale(1.1);
  border-color: #ff462e;
  box-shadow: 0 0 15px rgba(255, 70, 46, 0.2);
}

.process__step-content {
  text-align: center;
  max-width: 200px;
}
@media (max-width: 768px) {
  .process__step-content {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .process__step-content {
    max-width: 120px;
  }
}

.process__step-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .process__step-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .process__step-title {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

.process__step-desc {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #666666;
  margin: 0;
}
@media (max-width: 768px) {
  .process__step-desc {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .process__step-desc {
    font-size: 11px;
    line-height: 1.2;
  }
}

/* ===================================
   CENTER ICON
   =================================== */
.process__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .process__center {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .process__center {
    width: 40px;
    height: 40px;
  }
}

.process__center-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__center-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .process__center-icon svg {
    width: 80%;
    height: 80%;
  }
}
@media (max-width: 480px) {
  .process__center-icon svg {
    width: 70%;
    height: 70%;
  }
}

/* ===================================
   SPECIAL STATES
   =================================== */
.process__step:hover .process__step-number {
  background: #ff462e;
  border-color: #ff462e;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.process__step:hover .process__step-number span {
  color: #ffffff;
}

.process__step:hover .process__step-title {
  color: #ff462e;
  transition: color 0.3s ease;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 768px) {
  .process__step-content {
    position: relative;
  }
  .process__step-title,
  .process__step-desc {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .process__header {
    margin-bottom: 40px;
  }
  .process__content {
    min-height: 400px;
  }
}
/* ===================================
   WHEEL ROTATION EFFECTS
   Эффекты при вращении колеса скроллом
   =================================== */
.process__step-number span.active-rotation {
  color: #ff462e !important;
  font-weight: 600;
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(255, 70, 46, 0.3);
}
.process__step-number span.transitioning-rotation {
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #999999;
}

.process__circle {
  transform-origin: center center;
}

.process__step-number {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.process__step-number span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process.rotating .process__step-number {
  border-width: 2px;
}
.process.rotating .process__step-number span {
  font-weight: 500;
}

@media (max-width: 768px) {
  .process__step-number span.active-rotation {
    transform: scale(1.05);
    font-size: 15px;
  }
  .process__step-number span.transitioning-rotation {
    transform: scale(0.9);
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .process__step-number span.active-rotation {
    transform: scale(1.02);
    font-size: 14px;
  }
  .process__step-number span.transitioning-rotation {
    transform: scale(0.95);
    font-size: 12px;
  }
}
/* ===================================
   PURCHASE PROCESS SLIDER STYLES
   Слайдер процесса покупки с круговыми цифрами
   =================================== */
.purchase-process-slider {
  padding: 120px 0 0 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  height: 672px;
}

/* ===================================
   HEADER STYLES
   =================================== */
.purchase-process-slider__header {
  margin-bottom: 80px;
}

.purchase-process-slider__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .purchase-process-slider__title-wrapper {
    font-size: 14px;
  }
}

.purchase-process-slider__plus {
  width: 6px;
  height: 6px;
  background-image: url(../image/icons/calculation-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.purchase-process-slider__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #2D2D2D;
  letter-spacing: 1px;
  height: -moz-fit-content;
  height: fit-content;
}

.purchase-process-slider__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2D2D2D;
  margin: 0;
}

/* ===================================
   CONTENT CONTAINER
   =================================== */
.purchase-process-slider__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

/* ===================================
   CIRCULAR CONTAINER
   =================================== */
.purchase-process-slider__circle-container {
  position: relative;
  width: 1200px;
  height: 1200px;
  margin: 0 auto;
}

/* ===================================
   STEP NUMBERS
   =================================== */
.purchase-process-slider__step-numbers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  transform-origin: center center;
}
.purchase-process-slider__step-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  border: 2px dashed #D9D9D9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.8s ease-in-out;
}

.purchase-process-slider__step-number {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translateY(-10px);
}
.purchase-process-slider__step-number[data-step="1"] {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-566px);
}
.purchase-process-slider__step-number[data-step="2"] {
  transform: translate(-50%, -50%) rotate(51.43deg) translateY(-566px);
}
.purchase-process-slider__step-number[data-step="3"] {
  transform: translate(-50%, -50%) rotate(102.86deg) translateY(-566px);
}
.purchase-process-slider__step-number[data-step="4"] {
  transform: translate(-50%, -50%) rotate(154.29deg) translateY(-566px);
}
.purchase-process-slider__step-number[data-step="5"] {
  transform: translate(-50%, -50%) rotate(205.72deg) translateY(-566px);
}
.purchase-process-slider__step-number[data-step="6"] {
  transform: translate(-50%, -50%) rotate(257.15deg) translateY(-566px);
}
.purchase-process-slider__step-number[data-step="7"] {
  transform: translate(-50%, -50%) rotate(308.58deg) translateY(-566px);
}
.purchase-process-slider__step-number:hover[data-step="1"] {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number:hover[data-step="2"] {
  transform: translate(-50%, -50%) rotate(51.43deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number:hover[data-step="3"] {
  transform: translate(-50%, -50%) rotate(102.86deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number:hover[data-step="4"] {
  transform: translate(-50%, -50%) rotate(154.29deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number:hover[data-step="5"] {
  transform: translate(-50%, -50%) rotate(205.72deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number:hover[data-step="6"] {
  transform: translate(-50%, -50%) rotate(257.15deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number:hover[data-step="7"] {
  transform: translate(-50%, -50%) rotate(308.58deg) translateY(-566px) scale(1.1);
}
.purchase-process-slider__step-number.active .purchase-process-slider__line-circle {
  background: #ffffff;
  border-color: #FF462E;
}
.purchase-process-slider__step-number.active .purchase-process-slider__line-circle::before {
  background: #FF462E;
}

/* ===================================
   LINE CIRCLES STYLES
   Круги на линии окружности
   =================================== */
.purchase-process-slider__line-circle {
  width: 20px;
  height: 20px;
  border: 1px solid #2D2D2D;
  border-radius: 50%;
  background: #2D2D2D;
  transform: translate(10px, -10px);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .purchase-process-slider__line-circle {
    transform: translate(10px, -13px);
  }
}
.purchase-process-slider__line-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.purchase-process-slider__number-circle {
  width: 100%;
  height: 100%;
  border: 1px solid #2D2D2D;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  transform: translateY(-35px);
}
.purchase-process-slider__number-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.purchase-process-slider__number-circle span {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2D2D2D;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* ===================================
   CONTENT SLIDES
   =================================== */
.purchase-process-slider__slides {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 300px;
  overflow: hidden;
  z-index: 10;
}
.purchase-process-slider__slides::before {
  content: "";
  height: 150px;
  width: 1px;
  background-color: #2D2D2D;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .purchase-process-slider__slides::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .purchase-process-slider__slides {
    top: 15%;
    width: 100%;
    padding: 0;
  }
}

.purchase-process-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.purchase-process-slider__slide.active {
  opacity: 1;
  transform: translateY(0);
}
.purchase-process-slider__slide.slide-out {
  opacity: 0;
  transform: translateY(-50px);
}

.purchase-process-slider__slide-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #2D2D2D;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .purchase-process-slider__slide-title {
    font-size: 14px;
  }
}

.purchase-process-slider__slide-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6B6B6B;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .purchase-process-slider__slide-text {
    font-size: 12px;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}
.purchase-process-slider__slide.slide-in {
  animation: slideUp 0.6s ease-out;
}

.purchase-process-slider__slide.slide-out {
  animation: slideDown 0.6s ease-out;
}

/* ===================================
   MOBILE STYLES
   =================================== */
@media (max-width: 768px) {
  /* Hide subtitle on mobile */
  .purchase-process-slider__subtitle {
    display: none;
  }
  /* Mobile navigation */
  .purchase-process-slider__mobile-nav {
    display: flex;
    gap: 12px;
    margin-left: auto;
  }
  .purchase-process-slider__nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .purchase-process-slider__nav-btn img {
    width: 10px;
    height: 10px;
  }
  .purchase-process-slider__nav-prev {
    rotate: 180deg;
  }
  /* Hide circular diagram on mobile */
  /* Mobile pagination */
  .purchase-process-slider__pagination {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .purchase-process-slider__pagination-dots {
    display: flex;
    gap: 8px;
  }
  .purchase-process-slider__pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .purchase-process-slider__pagination-dot.active {
    background: #2D2D2D;
  }
}
/* Desktop styles - hide mobile elements */
@media (min-width: 769px) {
  .purchase-process-slider__mobile-nav {
    display: none;
  }
  .purchase-process-slider__pagination {
    display: none;
  }
}
.review {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.review__plus {
  width: 8px;
  height: 8px;
  background-image: url(../image/icons/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.review__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../image/review-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.review__header {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.review__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.review__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.review__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
.review__switcher {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}
.review__switch-btn {
  padding: 12px 30px;
  border: 1px solid #d9d9d9;
  border-radius: 40px;
  background: transparent;
  color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
}
.review__switch-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.review__switch-btn--active {
  background: #ffffff;
  border-color: #ffffff;
  color: #2d2d2d;
}
.review__switch-btn--active:hover {
  background: #ffffff;
}
.review__navigation {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.review__nav-btn {
  width: 30.5px;
  height: 30.5px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.review__nav-btn:active {
  transform: scale(0.95);
}
.review__nav-btn svg {
  width: 16px;
  height: 16px;
}
.review__nav-btn svg path {
  transition: stroke 0.3s ease;
}
.review__nav-btn:hover svg path {
  stroke: #ff462e;
}
.review__nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.review__nav-btn:disabled:hover {
  background: transparent;
}
.review__nav-btn:disabled:hover svg path {
  stroke: #ffffff;
}
.review__content {
  display: none;
  overflow: hidden;
}
.review__content.active {
  display: block;
}
.review__slider {
  overflow: hidden;
}
.review__text-card {
  background: transparent;
  text-align: center;
  max-width: 509px;
  margin: 0 auto;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.review__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__author-name {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
}
.review__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.review__video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
}
.review__video-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.review__video-card:hover {
  transform: translateY(-5px);
}
.review__video-card:hover .review__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.review__video-preview {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d9d9;
}
.review__video-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review__play-btn svg {
  width: 16px;
  height: 20px;
  margin-left: 2px;
}
.review__play-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}
.review__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
  transition: margin-top 0.3s ease;
}
.review__pagination--video {
  margin-top: 60px;
}
.review__pagination-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.review__pagination-dot--active {
  background: #ffffff;
}
.review__pagination-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1024px) {
  .review {
    padding: 80px 0;
  }
  .review__header {
    margin-bottom: 60px;
  }
  .review__video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .review__video-preview {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .review {
    padding: 60px 0;
  }
  .review__header {
    margin-bottom: 40px;
  }
  .review__title {
    font-size: 12px;
  }
  .review__switch-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  .review__nav-btn {
    width: 28px;
    height: 28px;
  }
  .review__nav-btn svg {
    width: 12px;
    height: 12px;
  }
  .review__video-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .review__video-preview {
    height: 180px;
  }
  .review__text-card {
    max-width: 100%;
  }
  .review__text {
    font-size: 11px;
  }
  .review__author-name {
    font-size: 14px;
  }
  .review__pagination {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .review {
    padding: 40px 0;
  }
  .review__switcher {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .review__switch-btn {
    width: 100%;
    padding: 12px 20px;
  }
  .review__video-preview {
    height: 160px;
  }
  .review__play-btn {
    width: 50px;
    height: 50px;
  }
  .review__play-btn svg {
    width: 14px;
    height: 18px;
  }
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.video-modal.is-open .video-modal__content {
  transform: scale(1);
}
.video-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.video-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.video-modal__close svg {
  width: 20px;
  height: 20px;
}
.video-modal__video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
}
@media (max-width: 768px) {
  .video-modal__content {
    max-width: 95vw;
    max-height: 85vh;
  }
  .video-modal__close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
  .video-modal__close svg {
    width: 16px;
    height: 16px;
  }
}

.wyt {
  position: relative;
  padding: 80px 0 120px;
  background: #f9f9f9;
  overflow: hidden;
}
.wyt__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  pointer-events: none;
}
.wyt__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.wyt__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wyt__plus {
  width: 8px;
  height: 8px;
  background-image: url("../image/icons/advantages-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  z-index: 2;
}
.wyt__small-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  z-index: 2;
}
.wyt__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  z-index: 2;
  max-width: 347px;
}
.wyt__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0;
  max-width: 195px;
  grid-column: 3;
  align-self: center;
  justify-self: start;
  white-space: nowrap;
}
.wyt__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.wyt__advantage {
  display: grid;
  grid-template-columns: 287px 1fr auto;
  gap: 210px;
  align-items: start;
  position: relative;
}
.wyt__advantage::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.wyt__advantage:last-child::after {
  display: none;
}
.wyt__advantage-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.wyt__advantage-description {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0;
  max-width: 440px;
}
.wyt__catalog-link-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .wyt {
    padding: 60px 0 100px;
  }
  .wyt__advantage {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wyt__advantage-title, .wyt__advantage-description, .wyt__subtitle, .wyt__catalog-link-wrapper {
    grid-column: 1;
    justify-self: start;
  }
  .wyt__title {
    font-size: 28px;
  }
  .wyt::before {
    right: -400px;
    opacity: 0.15;
  }
  .wyt__subtitle {
    margin-top: 10px;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .wyt {
    padding: 40px 0 80px;
  }
  .wyt__title {
    font-size: 24px;
  }
  .wyt__advantage-title {
    font-size: 20px;
  }
  .wyt::before {
    display: none;
  }
  .wyt__catalog-link-wrapper {
    justify-content: flex-start;
  }
}

/* ===================================
   CATALOG LINK ANIMATIONS
   =================================== */
@keyframes catalog-underline-hide-show {
  0% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right center;
  }
}
@keyframes catalog-underline-reverse {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes catalog-arrow-move {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateX(10px) translateY(-10px);
    opacity: 0;
  }
  60% {
    transform: translateX(-10px) translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
@keyframes catalog-arrow-reverse {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-10px) translateY(10px);
    opacity: 0;
  }
  60% {
    transform: translateX(10px) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
.calculation {
  padding: 120px 0;
  background: #fff;
  position: relative;
}
.calculation__header {
  text-align: left;
  width: 100%;
}
.calculation__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.calculation__plus {
  width: 6px;
  height: 6px;
  background-image: url("../image/icons/calculation-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.calculation__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  letter-spacing: 0.04em;
}
.calculation__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.calculation__content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calculation__image {
  position: relative;
  margin-bottom: 20px;
}
.calculation__car-image {
  width: 829px;
  height: 382px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.calculation__car-title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  text-align: center;
  margin: 20px 0 12px 0;
  width: 100%;
}
.calculation__disclaimer {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  text-align: center;
  margin: 0 0 118px 0;
  max-width: 556px;
  width: 100%;
}
.calculation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
.calculation__grid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 33.33%;
  width: 1px;
  height: calc(50% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.calculation__grid::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 66.66%;
  width: 1px;
  height: calc(50% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.calculation__grid .calculation__card:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -20px;
  right: -20px;
  height: 1px;
  background: #d9d9d9;
  z-index: 1;
}
.calculation__card {
  padding: 20px;
  position: relative;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.calculation__card:nth-child(1)::after, .calculation__card:nth-child(2)::after, .calculation__card:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #d9d9d9;
}
.calculation__card:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -1px;
  width: 1px;
  height: calc(100% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.calculation__card:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -1px;
  width: 1px;
  height: calc(100% - 40px);
  background: #d9d9d9;
  z-index: 1;
}
.calculation__card-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.calculation__card-label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
}
.calculation__card-price {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
}
.calculation__button {
  align-self: center;
}

.btn-calculation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 18px 8px 8px;
  background: #f5f4f3;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 224px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
}
.btn-calculation:hover {
  background: #eeeeee;
}
.btn-calculation:hover .btn-calculation__arrow {
  animation: stock-arrow-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-calculation:hover .btn-calculation__main {
  animation: stock-text-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-calculation:not(:hover) .btn-calculation__arrow {
  animation: stock-arrow-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-calculation:not(:hover) .btn-calculation__main {
  animation: stock-text-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-calculation:active {
  transform: translateY(0);
}
.btn-calculation__icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-calculation__circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}
.btn-calculation__arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.btn-calculation__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.btn-calculation__main {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  text-transform: uppercase;
  color: #2d2d2d;
  display: block;
  text-align: right;
}

@keyframes stock-arrow-slide-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes stock-arrow-slide-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-8px);
    opacity: 0;
  }
  51% {
    transform: translateX(8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes stock-text-slide-right {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes stock-text-slide-left {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .calculation__car-image {
    width: 100%;
    max-width: 700px;
    height: auto;
  }
  .calculation__cell {
    padding: 16px;
    font-size: 11px;
  }
  .calculation__cell--price {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .calculation {
    padding: 80px 0;
  }
  .calculation__subtitle {
    font-size: 28px;
  }
  .calculation__car-image {
    max-width: 600px;
  }
  .calculation__car-title {
    font-size: 20px;
  }
  .calculation__disclaimer {
    margin-bottom: 60px;
  }
  .calculation__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .calculation__grid::before {
    left: 50%;
    top: 20px;
    height: calc(100% - 40px);
  }
  .calculation__grid::after {
    display: none;
  }
  .calculation__grid .calculation__card:nth-child(2)::after,
  .calculation__grid .calculation__card:nth-child(4)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d9d9d9;
  }
  .calculation__grid .calculation__card:nth-child(3)::after {
    display: none;
  }
  .calculation__card {
    padding: 16px;
    min-height: 100px;
  }
  .calculation__card:nth-child(4)::before, .calculation__card:nth-child(5)::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .calculation {
    padding: 60px 0;
  }
  .calculation__subtitle {
    font-size: 24px;
  }
  .calculation__car-image {
    max-width: 100%;
  }
  .calculation__car-title {
    font-size: 18px;
  }
  .calculation__disclaimer {
    margin-bottom: 40px;
  }
  .calculation__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
  .calculation__grid::before {
    display: none;
  }
  .calculation__grid .calculation__card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d9d9d9;
  }
  .calculation__card {
    padding: 20px 16px;
    min-height: 80px;
  }
  .calculation__card-price {
    font-size: 13px;
  }
  .btn-calculation {
    padding: 12px 24px 12px 12px;
    width: auto;
    min-width: 200px;
  }
  .btn-calculation__text-container {
    width: auto;
    min-width: 140px;
  }
  .btn-calculation__text {
    font-size: 11px;
  }
  .calculation__card-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
  }
}
/* ===================================
   FAVORITES PANEL
   =================================== */
.favorites-panel {
  position: fixed;
  top: 0;
  right: -540px;
  width: 540px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.favorites-panel--open {
  right: 0;
}
.favorites-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.favorites-panel__title {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.favorites-panel__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.favorites-panel__content {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}
.favorites-panel__item {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.favorites-panel__item:last-child {
  border-bottom: none;
}
.favorites-panel__image {
  width: 60px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
  flex-shrink: 0;
}
.favorites-panel__info {
  flex-grow: 1;
}
.favorites-panel__model {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.favorites-panel__price {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}
.favorites-panel__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.favorites-panel__remove, .favorites-panel__view {
  background: #2d2d2d;
  border-radius: 16px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.favorites-panel__remove img, .favorites-panel__view img {
  max-width: 100%;
  max-height: 100%;
}
.favorites-panel__remove {
  background: #ededed;
}
.favorites-panel__catalog-button {
  display: block;
  width: calc(100% - 40px);
  margin: 20px;
  padding: 8px 90px;
  background-color: #2d2d2d;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: sticky;
  bottom: 0;
  height: 38px;
  left: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.favorites-panel__catalog-button:hover {
  background-color: #fff;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}

/* ===================================
   OVERLAY FOR BLUR EFFECT
   =================================== */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.body-overlay--active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  min-width: 340px;
  max-width: 90vw;
  width: 420px;
  padding: 22px 32px 32px 32px;
  display: none;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s;
}
.modal.modal--open {
  display: flex;
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  padding: 0;
  z-index: 2;
}
.modal__close img {
  width: 100%;
  height: 100%;
}
.modal__content {
  width: 100%;
}
.modal__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #2d2d2d;
}
.modal__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-bottom: 20px;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.modal__field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal__label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-bottom: 8px;
}
.modal__input, .modal__textarea {
  width: 100%;
  padding: 12px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid #ededed;
  border-radius: 5px;
  background: #ffffff;
  color: #6b6b6b;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}
.modal__input::-moz-placeholder, .modal__textarea::-moz-placeholder {
  color: #6b6b6b;
}
.modal__input::placeholder, .modal__textarea::placeholder {
  color: #6b6b6b;
}
.modal__input:focus, .modal__textarea:focus {
  border: 1px solid #ff462e;
}
.modal__textarea {
  min-height: 90px;
  resize: vertical;
}
.modal__submit {
  width: 100%;
  height: 38px;
  padding: 8px 90px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.193;
  letter-spacing: -0.02em;
  background: #2d2d2d;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal__submit:hover {
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}
.modal__policy {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  text-align: center;
}
.modal__policy a {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .modal {
    min-width: unset;
    width: 90vw;
    padding: 24px 16px 16px 16px;
    border-radius: 16px;
  }
  .modal__title {
    font-size: 20px;
  }
  .modal__subtitle {
    font-size: 11px;
  }
  .modal__close {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }
  .modal__form {
    gap: 16px;
  }
  .modal__input,
  .modal__textarea {
    font-size: 11px;
  }
  .modal__submit {
    font-size: 12px;
    padding: 8px 60px;
  }
  .modal__policy {
    font-size: 10px;
  }
}
/* ===================================
   GUARANTEE MODAL
   =================================== */
.guarantee-modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  min-width: 340px;
  max-width: 90vw;
  width: 420px;
  padding: 22px 32px 32px 32px;
  display: none;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s;
}
.guarantee-modal__content.modal--open {
  display: flex;
}
.guarantee-modal__content.car {
  width: 100%;
  max-width: 860px;
  max-height: 762px;
  overflow-y: auto;
}
@media (max-width: 860px) {
  .guarantee-modal__content.car {
    width: 90%;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .guarantee-modal__content {
    max-width: 95%;
    max-height: 85vh;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .guarantee-modal__content {
    max-width: 98%;
    max-height: 90vh;
    padding: 12px;
  }
}
.guarantee-modal__content::-webkit-scrollbar {
  width: 6px;
}
.guarantee-modal__content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.guarantee-modal__content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.guarantee-modal__content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.guarantee-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}
.guarantee-modal__close img {
  width: 100%;
  height: 100%;
}
.guarantee-modal__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0 0 20px;
  padding-right: 60px;
}
.guarantee-modal__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.guarantee-modal__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guarantee-modal__item-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.guarantee-modal__item-description {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0;
}
@media (max-width: 768px) {
  .guarantee-modal__overlay {
    padding: 16px;
  }
  .guarantee-modal__content {
    padding: 16px;
    max-height: 85vh;
  }
  .guarantee-modal__title {
    font-size: 20px;
    padding-right: 50px;
    margin-bottom: 16px;
  }
  .guarantee-modal__close {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }
  .guarantee-modal__close img {
    width: 36px;
    height: 36px;
  }
  .guarantee-modal__list {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .guarantee-modal__overlay {
    padding: 12px;
  }
  .guarantee-modal__content {
    padding: 12px;
  }
  .guarantee-modal__title {
    font-size: 18px;
    padding-right: 45px;
  }
  .guarantee-modal__close {
    width: 32px;
    height: 32px;
  }
  .guarantee-modal__close img {
    width: 32px;
    height: 32px;
  }
}

.home {
  transition: filter 0.3s ease;
}

.quiz-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.quiz-modal.show {
  display: flex;
}
.quiz-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
}
.quiz-modal__content {
  position: relative;
  background: #ffffff;
  width: 1067px;
  height: 510px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1200px) {
  .quiz-modal__content {
    width: 90%;
    max-width: 800px;
    height: auto;
    min-height: 400px;
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .quiz-modal__content {
    width: 95%;
    min-height: 350px;
    padding: 30px 15px;
  }
}
.quiz-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease;
}
.quiz-modal__close:hover {
  transform: scale(1.1);
}
.quiz-modal__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.quiz-modal__discount {
  position: relative;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  margin-top: 80px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-modal__discount {
    font-size: 10px;
    top: 60px;
    padding: 0 20px;
  }
}
.quiz-modal__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1em;
  color: #2d2d2d;
  text-align: center;
  margin: 8px 0 12px;
  max-width: 456px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-modal__title {
    font-size: 28px;
    margin: 8px 0 10px;
    max-width: 350px;
  }
}
@media (max-width: 480px) {
  .quiz-modal__title {
    font-size: 24px;
    margin: 8px 0 8px;
  }
}
.quiz-modal__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #6b6b6b;
  text-align: center;
  margin: 0 0 20px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-modal__subtitle {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.quiz-modal__start-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 18px 8px 8px;
  background: #f5f4f3;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 120px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
  margin-top: 20px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-modal__start-btn {
    width: 170px;
    padding: 8px 14px 8px 8px;
    margin-top: 15px;
  }
}
.quiz-modal__start-btn:hover {
  background: #eeeeee;
}
.quiz-modal__start-btn:hover .quiz-modal__start-arrow {
  animation: hero-arrow-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.quiz-modal__start-btn:hover .quiz-modal__start-main {
  animation: hero-text-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.quiz-modal__start-btn:not(:hover) .quiz-modal__start-arrow {
  animation: hero-arrow-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.quiz-modal__start-btn:not(:hover) .quiz-modal__start-main {
  animation: hero-text-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.quiz-modal__start-btn:active {
  transform: translateY(0);
}
.quiz-modal__start-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.quiz-modal__start-main {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  text-transform: uppercase;
  color: #2d2d2d;
  display: block;
}
.quiz-modal__start-icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-modal__start-circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}
.quiz-modal__start-arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}
.quiz-modal__car-bg {
  position: absolute;
  bottom: -200px;
  left: -118px;
  width: 1388px;
  height: 402px;
  background: url("../image/modal-car-bg.jpg") center/cover no-repeat;
  z-index: 0;
}
@media (max-width: 1200px) {
  .quiz-modal__car-bg {
    left: -200px;
    width: 120%;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .quiz-modal__car-bg {
    left: -100px;
    width: 300%;
    height: 200px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.quiz-survey-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.quiz-survey-modal.show {
  display: flex;
}
.quiz-survey-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.quiz-survey-modal__content {
  position: relative;
  background: #ffffff;
  width: 1067px;
  height: 510px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1200px) {
  .quiz-survey-modal__content {
    width: 90%;
    max-width: 900px;
    height: auto;
    min-height: 500px;
    padding: 0 0 40px 0;
  }
}
@media (max-width: 768px) {
  .quiz-survey-modal__content {
    width: 95%;
    min-height: 450px;
    padding: 0 0 30px 0;
  }
}
.quiz-survey-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease;
}
.quiz-survey-modal__close:hover {
  transform: scale(1.1);
}
.quiz-survey-modal__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.quiz-survey-modal__discount {
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .quiz-survey-modal__discount {
    font-size: 10px;
    left: 30px;
    top: 60px;
    right: 80px;
  }
}
.quiz-survey-modal__discount-dot {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
  flex-shrink: 0;
}
.quiz-survey-modal__bottom {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-survey-modal__bottom {
    left: 20px;
    right: 30px;
    bottom: 40px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.quiz-survey-modal__progress-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-survey-modal__progress-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
}
@media (max-width: 768px) {
  .quiz-survey-modal__progress-text {
    font-size: 14px;
  }
}
.quiz-survey-modal__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .quiz-survey-modal__controls {
    gap: 8px;
    margin-top: 16px;
  }
}
.quiz-survey-modal__back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2d2d2d;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quiz-survey-modal__back-btn img {
  width: 16px;
  height: 16px;
}
.quiz-survey-modal__next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 90px;
  background: #2d2d2d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  height: 40px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .quiz-survey-modal__next-btn {
    padding: 8px 40px;
    font-size: 12px;
  }
}
.quiz-survey-modal__next-btn:hover {
  background: #1a1a1a;
}
.quiz-survey-modal__next-btn:disabled {
  background: #6b6b6b;
  cursor: not-allowed;
}
.quiz-survey-modal__title {
  position: absolute;
  top: 160px;
  left: 30px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1em;
  color: #2d2d2d;
  margin: 0;
  max-width: 456px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-survey-modal__title {
    font-size: 24px;
    top: 140px;
    max-width: 350px;
    left: 20px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__title {
    font-size: 20px;
    top: 130px;
  }
}
.quiz-survey-modal__options {
  position: absolute;
  top: 236px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-survey-modal__options {
    top: 210px;
    left: 20px;
    gap: 10px;
  }
}
.quiz-survey-modal__options--two-columns {
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 768px) {
  .quiz-survey-modal__options--two-columns {
    flex-direction: column;
    gap: 16px;
  }
}
.quiz-survey-modal__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .quiz-survey-modal__column {
    gap: 10px;
  }
}
.quiz-survey-modal__option {
  display: flex;
  align-items: center;
}
.quiz-survey-modal__option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
  transition: all 0.2s ease;
}
.quiz-survey-modal__option-label:hover .quiz-survey-modal__option-text {
  color: #2d2d2d;
}
.quiz-survey-modal__radio {
  display: none;
}
.quiz-survey-modal__custom-radio {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #6b6b6b;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.quiz-survey-modal__custom-radio::after {
  content: "";
  position: absolute;
  width: 16px;
  left: -1px;
  height: 16px;
  background: url("../image/icons/cross-black.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: scale(0.8);
}
.quiz-survey-modal__radio:checked + .quiz-survey-modal__custom-radio {
  border-color: #ff462e;
}
.quiz-survey-modal__radio:checked + .quiz-survey-modal__custom-radio::after {
  opacity: 1;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M20 6 9 17l-5-5" stroke="%23FF462E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
.quiz-survey-modal__option-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #6b6b6b;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .quiz-survey-modal__option-text {
    font-size: 14px;
  }
}
.quiz-survey-modal__radio:checked + .quiz-survey-modal__custom-radio + .quiz-survey-modal__option-text {
  color: #2d2d2d;
  font-weight: 500;
}
.quiz-survey-modal__checkbox {
  display: none;
}
.quiz-survey-modal__custom-checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #6b6b6b;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.quiz-survey-modal__custom-checkbox::after {
  content: "";
  position: absolute;
  width: 16px;
  left: -1px;
  height: 16px;
  background: url("../image/icons/cross-black.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: scale(0.8);
}
.quiz-survey-modal__checkbox:checked + .quiz-survey-modal__custom-checkbox {
  border-color: #ff462e;
}
.quiz-survey-modal__checkbox:checked + .quiz-survey-modal__custom-checkbox::after {
  opacity: 1;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M20 6 9 17l-5-5" stroke="%23FF462E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
.quiz-survey-modal__checkbox:checked + .quiz-survey-modal__custom-checkbox + .quiz-survey-modal__option-text {
  color: #2d2d2d;
  font-weight: 500;
}
.quiz-survey-modal__message-field {
  position: absolute;
  top: 212px;
  left: 30px;
  width: 379px;
  z-index: 2;
}
@media (max-width: 768px) {
  .quiz-survey-modal__message-field {
    top: 200px;
    left: 20px;
    width: 300px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__message-field {
    width: 250px;
  }
}
.quiz-survey-modal__textarea {
  width: 100%;
  height: 90px;
  padding: 12px;
  border: 1px solid #ededed;
  border-radius: 5px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  background: #ffffff;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.quiz-survey-modal__textarea:focus {
  outline: none;
  border-color: #ff462e;
}
.quiz-survey-modal__textarea::-moz-placeholder {
  color: #6b6b6b;
}
.quiz-survey-modal__textarea::placeholder {
  color: #6b6b6b;
}
@media (max-width: 768px) {
  .quiz-survey-modal__textarea {
    font-size: 11px;
    height: 80px;
    padding: 10px;
  }
}
.quiz-survey-modal__complete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 70px;
  background: #2d2d2d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  height: 40px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .quiz-survey-modal__complete-btn {
    padding: 8px 50px;
    font-size: 12px;
  }
}
.quiz-survey-modal__complete-btn:hover {
  background: #1a1a1a;
}
.quiz-survey-modal__complete-btn:disabled {
  background: #6b6b6b;
  cursor: not-allowed;
}
.quiz-survey-modal__progress-bar {
  width: 670px;
  height: 4px;
  background: #ededed;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .quiz-survey-modal__progress-bar {
    width: 280px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__progress-bar {
    width: 250px;
  }
}
.quiz-survey-modal__progress-fill {
  width: 0%;
  height: 100%;
  background: #ff462e;
  border-radius: 20px;
  transition: width 0.5s ease;
}
.quiz-survey-modal__progress-fill--20 {
  width: 20%;
}
.quiz-survey-modal__progress-fill--40 {
  width: 40%;
}
.quiz-survey-modal__progress-fill--60 {
  width: 60%;
}
.quiz-survey-modal__progress-fill--80 {
  width: 80%;
}
.quiz-survey-modal__car-bg {
  position: absolute;
  bottom: 105px;
  right: 50px;
  width: 383px;
  height: 383px;
  background: url("../image/quiz-car-bg.jpg") center/cover no-repeat;
  transform: rotate(-15deg);
  z-index: 0;
}
@media (max-width: 1200px) {
  .quiz-survey-modal__car-bg {
    right: 20px;
    width: 320px;
    height: 320px;
    bottom: 40px;
  }
}
@media (max-width: 768px) {
  .quiz-survey-modal__car-bg {
    right: -20px;
    width: 280px;
    height: 280px;
    bottom: 30px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__car-bg {
    right: -40px;
    width: 220px;
    height: 220px;
    bottom: 20px;
  }
}
.quiz-survey-modal__car-bg--step2 {
  bottom: 75px;
  right: 113px;
  width: 427px;
  height: 427px;
  background: url("../image/quiz-car-bg-2.jpg") center/cover no-repeat;
  transform: none;
}
@media (max-width: 1200px) {
  .quiz-survey-modal__car-bg--step2 {
    right: 50px;
    width: 350px;
    height: 350px;
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .quiz-survey-modal__car-bg--step2 {
    right: 0px;
    width: 300px;
    height: 300px;
    bottom: 30px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__car-bg--step2 {
    right: -30px;
    width: 250px;
    height: 250px;
    bottom: 20px;
  }
}
.quiz-survey-modal__car-bg--step3 {
  bottom: 70px;
  right: 113px;
  width: 433px;
  height: 433px;
  background: url("../image/quiz-car-bg-3.jpg") center/cover no-repeat;
  transform: none;
}
@media (max-width: 1200px) {
  .quiz-survey-modal__car-bg--step3 {
    right: 50px;
    width: 500px;
    height: 500px;
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .quiz-survey-modal__car-bg--step3 {
    right: 0px;
    width: 400px;
    height: 400px;
    bottom: 30px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__car-bg--step3 {
    right: -30px;
    width: 320px;
    height: 320px;
    bottom: 20px;
  }
}
.quiz-survey-modal__car-bg--step4 {
  bottom: 70px;
  right: 113px;
  width: 428px;
  height: 387px;
  background: url("../image/quiz-car-bg-4.jpg") center/cover no-repeat;
  transform: none;
}
@media (max-width: 1200px) {
  .quiz-survey-modal__car-bg--step4 {
    right: 450px;
    width: 350px;
    height: 320px;
    bottom: 30px;
  }
}
@media (max-width: 768px) {
  .quiz-survey-modal__car-bg--step4 {
    right: 300px;
    width: 280px;
    height: 250px;
    bottom: 30px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__car-bg--step4 {
    right: 150px;
    width: 220px;
    height: 200px;
    bottom: 20px;
  }
}
.quiz-survey-modal__car-bg--step5 {
  bottom: 70px;
  right: 113px;
  width: 372px;
  height: 396px;
  background: url("../image/quiz-car-bg-5.jpg") center/cover no-repeat;
  transform: none;
}
@media (max-width: 1200px) {
  .quiz-survey-modal__car-bg--step5 {
    right: 450px;
    width: 300px;
    height: 320px;
    bottom: 30px;
  }
}
@media (max-width: 768px) {
  .quiz-survey-modal__car-bg--step5 {
    right: 250px;
    width: 250px;
    height: 260px;
    bottom: 30px;
  }
}
@media (max-width: 480px) {
  .quiz-survey-modal__car-bg--step5 {
    right: 100px;
    width: 200px;
    height: 210px;
    bottom: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.quiz-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.quiz-success-modal.show {
  display: flex;
}
.quiz-success-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.quiz-success-modal__content {
  position: relative;
  background: #ffffff;
  width: 1067px;
  height: 510px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1200px) {
  .quiz-success-modal__content {
    width: 90%;
    max-width: 900px;
    height: auto;
    min-height: 500px;
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .quiz-success-modal__content {
    width: 95%;
    min-height: 450px;
    padding: 30px 0;
  }
}
.quiz-success-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease;
}
.quiz-success-modal__close:hover {
  transform: scale(1.1);
}
.quiz-success-modal__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.quiz-success-modal__form-container {
  position: relative;
  z-index: 2;
  width: 304px;
  text-align: center;
}
@media (max-width: 768px) {
  .quiz-success-modal__form-container {
    width: 280px;
  }
}
@media (max-width: 480px) {
  .quiz-success-modal__form-container {
    width: 250px;
  }
}
.quiz-success-modal__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1em;
  text-align: center;
  color: #2d2d2d;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .quiz-success-modal__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .quiz-success-modal__title {
    font-size: 20px;
  }
}
.quiz-success-modal__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #6b6b6b;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .quiz-success-modal__subtitle {
    margin-bottom: 50px;
    font-size: 11px;
  }
}
.quiz-success-modal__form {
  width: 100%;
}
.quiz-success-modal__field {
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .quiz-success-modal__field {
    margin-bottom: 16px;
  }
}
.quiz-success-modal__label {
  display: block;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
}
@media (max-width: 768px) {
  .quiz-success-modal__label {
    font-size: 11px;
    margin-bottom: 6px;
  }
}
.quiz-success-modal__input {
  width: 100%;
  height: 50px;
  padding: 12px;
  border: 1px solid #ededed;
  border-radius: 5px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.quiz-success-modal__input:focus {
  outline: none;
  border-color: #ff462e;
}
.quiz-success-modal__input::-moz-placeholder {
  color: #6b6b6b;
}
.quiz-success-modal__input::placeholder {
  color: #6b6b6b;
}
@media (max-width: 768px) {
  .quiz-success-modal__input {
    height: 45px;
    font-size: 11px;
    padding: 10px;
  }
}
.quiz-success-modal__submit-btn {
  width: 100%;
  height: 38px;
  background: #2d2d2d;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .quiz-success-modal__submit-btn {
    font-size: 12px;
    margin-top: 24px;
  }
}
.quiz-success-modal__submit-btn:hover {
  background: #1a1a1a;
}
.quiz-success-modal__submit-btn:disabled {
  background: #6b6b6b;
  cursor: not-allowed;
}
.quiz-success-modal__privacy {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #6b6b6b;
  margin: 12px 0 0 0;
}
@media (max-width: 768px) {
  .quiz-success-modal__privacy {
    font-size: 10px;
    margin-top: 8px;
  }
}
.quiz-success-modal__bg {
  position: absolute;
  bottom: -110px;
  left: -165px;
  width: 547px;
  height: 521px;
  background: url("../image/quiz-success-bg.jpg") center/cover no-repeat;
  z-index: 0;
}
@media (max-width: 1200px) {
  .quiz-success-modal__bg {
    left: -120px;
    width: 450px;
    height: 430px;
    bottom: 80px;
  }
}
@media (max-width: 768px) {
  .quiz-success-modal__bg {
    left: -80px;
    width: 350px;
    height: 330px;
    bottom: 60px;
  }
}
@media (max-width: 480px) {
  .quiz-success-modal__bg {
    left: -60px;
    width: 280px;
    height: 270px;
    bottom: 40px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===================================
   CONTENT WITH BACKGROUND WRAPPER
   =================================== */
.content-with-background {
  position: relative;
  overflow: hidden;
}

.background-svg {
  position: absolute;
  top: 40%;
  right: -200px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.background-svg__image {
  width: 760px;
  height: auto;
}

/* ===================================
   VIDEO BLOG SECTION
   =================================== */
.video {
  position: relative;
  padding: 80px 0 120px;
  background: #fff;
  /* ===================================
     NAVIGATION
     =================================== */
  /* ===================================
     SLIDER
     =================================== */
  /* ===================================
     ALL VIDEOS BUTTON
     =================================== */
}
.video .btn-hero {
  width: 139px;
}
.video__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.video__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video__title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.video__plus {
  width: 8px;
  height: 8px;
  background-image: url("../image/icons/advantages-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.video__small-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.video__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.video__navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}
.video__nav-btn {
  width: 30.5px;
  height: 30.5px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video__nav-btn:active {
  transform: scale(0.95);
}
.video__nav-btn svg {
  width: 16px;
  height: 16px;
}
.video__nav-btn svg path {
  transition: stroke 0.3s ease;
}
.video__nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.video__nav-btn:disabled:hover {
  background: transparent;
}
.video__nav-btn:disabled:hover svg path {
  stroke: #2d2d2d;
}
.video__slider-container {
  position: relative;
  margin-bottom: 40px;
}
.video__slider {
  overflow: hidden;
}
.video__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.video__button-wrapper {
  display: flex;
  justify-content: center;
}

/* ===================================
   VIDEO CARDS (из блога)
   =================================== */
.video-card {
  background: #f5f4f3;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 265px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
}
.video-card:hover .video-card__image img {
  transform: scale(1.05);
  filter: blur(2px);
}
.video-card:hover .video-card__button-arrow {
  animation: video-arrow-slide-right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.video-card:not(:hover) .video-card__button-arrow {
  animation: video-arrow-slide-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.video-card__image {
  position: relative;
  height: 198px;
  border-radius: 10px;
  overflow: hidden;
}
.video-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.video-card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 86px;
}
.video-card__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.video-card__button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-card__button:active {
  transform: translateY(0);
}
.video-card__button-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
  color: #2d2d2d;
}
.video-card__button-icon {
  position: relative;
  width: 29px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__button-circle {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
  z-index: 1;
}
.video-card__button-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  z-index: 2;
  filter: brightness(0) invert(1);
}

/* ===================================
   VIDEO BUTTON (как btn-hero)
   =================================== */
.btn-video {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 18px 8px 8px;
  background: #f5f4f3;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 139px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
}
.btn-video:hover {
  background: #eeeeee;
}
.btn-video:hover .btn-video__arrow {
  animation: video-btn-arrow-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-video:hover .btn-video__main {
  animation: video-btn-text-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-video:not(:hover) .btn-video__arrow {
  animation: video-btn-arrow-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-video:not(:hover) .btn-video__main {
  animation: video-btn-text-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-video:active {
  transform: translateY(0);
}
.btn-video__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.btn-video__main {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  text-transform: uppercase;
  color: #2d2d2d;
  display: block;
  text-align: right;
}
.btn-video__icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-video__circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}
.btn-video__arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes video-arrow-slide-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(12px);
  }
  51% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes video-arrow-slide-left {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-12px);
  }
  51% {
    opacity: 0;
    transform: translateX(12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes video-btn-arrow-slide-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes video-btn-arrow-slide-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-8px);
    opacity: 0;
  }
  51% {
    transform: translateX(8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes video-btn-text-slide-right {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes video-btn-text-slide-left {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .video {
    padding: 100px 0;
  }
  .video__header {
    margin-bottom: 60px;
  }
  .video__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video .video-card {
    height: 250px;
  }
  .video .video-card__image {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .video {
    padding: 80px 0;
  }
  .video__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
  }
  .video__title {
    font-size: 24px;
  }
  .video__navigation {
    align-self: flex-end;
  }
  .video__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video .video-card {
    height: 300px;
  }
  .video .video-card__image {
    height: 220px;
  }
  .video .video-card__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .video .video-card__button {
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .video {
    padding: 60px 0;
  }
  .video__title {
    font-size: 20px;
  }
  .video .video-card {
    height: 280px;
  }
  .video .video-card__image {
    height: 200px;
  }
  .video__pagination {
    margin-bottom: 40px;
  }
  .btn-video {
    width: 120px;
    padding: 8px 14px 8px 8px;
  }
  .btn-video__main {
    font-size: 11px;
  }
}
.faq-home {
  padding: 80px 0 120px;
  background: #ffffff;
  position: relative;
}
.faq-home .faq-item {
  border-bottom: 1px solid #d9d9d9;
}
.faq-home .faq-item:first-child {
  border-top: none;
  margin-top: -55px;
}
.faq-home .faq-number {
  margin-right: 0px;
}
.faq-home__inner {
  position: relative;
}
.faq-home__header {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}
.faq-home__title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.faq-home__plus {
  color: #ff462e;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.faq-home__badge {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}
.faq-home__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.faq-home__content {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: start;
}
.faq-home__background {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.faq-home__background::before {
  content: "";
  position: absolute;
  top: -171px;
  left: -250px;
  width: 800px;
  height: 700px;
  background-image: url("../image/icons/faq.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  z-index: 1;
}
.faq-home__background img {
  display: none;
}

.faq-item {
  border-bottom: 1px solid #d9d9d9;
}
.faq-item:first-child {
  border-top: 1px solid #d9d9d9;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-number {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.1;
  color: #2d2d2d;
  width: 32px;
  flex-shrink: 0;
  margin-right: 44px;
}

.faq-question-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #2d2d2d;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  margin-left: auto;
  padding-left: 20px;
}

.faq-plus-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #343330;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 12px 76px 16px 76px;
}
.faq-answer-content p {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0 0 16px 0;
}
.faq-answer-content p:last-child {
  margin-bottom: 0;
}
.faq-answer-content ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style-type: disc !important;
  list-style-position: outside;
}
.faq-answer-content ul li {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-bottom: 8px;
  display: list-item !important;
  list-style: disc !important;
}
.faq-answer-content ul li:last-child {
  margin-bottom: 0;
}
.faq-answer-content strong {
  font-weight: 500;
  color: #2d2d2d;
}

.faq-item--active .faq-plus-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-home__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-home__background {
    min-height: 300px;
    order: 2;
  }
  .faq-home__accordion {
    order: 1;
  }
  .faq-number {
    margin-right: 24px;
  }
  .faq-answer-content {
    padding: 12px 48px 16px 48px;
  }
}
/* Office Page */
/* ===================================
   OFFICE PAGE HEADER OVERRIDES
   =================================== */
body.page-office .header {
  background: #fff;
}
body.page-office .header .header__brand {
  color: #2d2d2d;
}
body.page-office .header .nav-item--active .nav-link {
  color: #2d2d2d;
}
body.page-office .header .nav-link:hover {
  color: #2d2d2d;
}
body.page-office .header .social-text {
  color: #2d2d2d;
}
body.page-office .header .social-text::after {
  background-color: #2d2d2d;
}
body.page-office .header .btn-currency {
  background: #f5f4f3;
  color: #2d2d2d;
}
body.page-office .header .btn-currency__text {
  color: #2d2d2d;
}
body.page-office .header .btn-favorite {
  background: #f5f4f3;
}
body.page-office .header .btn-favorite:hover {
  background: #ff462e;
}
body.page-office .header .btn-favorite:hover::after {
  filter: brightness(0) invert(1);
}
body.page-office .header .btn-favorite:not(:hover) {
  background: #f5f4f3;
}

/* ===================================
   MAP SECTION STYLES (Яндекс карта с кастомным маркером)
   =================================== */
/* Контейнер карты */
body.page-office .office-map-wrapper {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

body.page-office #yandex-map-container {
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}

/* Информационная панель поверх карты */
body.page-office .office-info-panel {
  position: absolute;
  top: 200px;
  right: 140px;
  width: 472px;
  height: 601px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow: hidden;
}

body.page-office .office-info-panel__header {
  padding: 20px 32px 0 20px;
  border-bottom: 1px solid #d9d9d9;
}

body.page-office .office-info-panel__header-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

body.page-office .office-info-panel__plus {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ff462e;
  width: 5.97px;
  height: 6.19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6.25px;
  flex-shrink: 0;
}

body.page-office .office-info-panel__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

body.page-office .office-info-panel__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  padding-bottom: 20px;
}

body.page-office .office-info-panel__content {
  background: #ffffff;
  padding: 20px;
  height: calc(100% - 129px);
}

body.page-office .office-info-panel__info-block {
  background: #f5f4f3;
  padding: 20px;
  border-radius: 0;
}

body.page-office .office-info-panel__location {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

body.page-office .office-info-panel__dot {
  width: 6px;
  height: 6px;
  background: #2d2d2d;
  border-radius: 50%;
  margin-right: 19px;
}

body.page-office .office-info-panel__location-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

body.page-office .office-info-panel__details {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

body.page-office .office-info-panel__contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.page-office .office-info-panel__icon {
  width: 20px;
  height: 20px;
  border: 0.5px solid #6b6b6b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

body.page-office .office-info-panel__address {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  max-width: 286px;
  text-decoration: underline;
}

body.page-office .office-info-panel__contact-info {
  display: flex;
  gap: 25px;
}

body.page-office .office-info-panel__phone {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
  color: #6b6b6b;
  text-decoration: underline;
}

body.page-office .office-info-panel__email {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  color: #6b6b6b;
  text-decoration: underline;
}

/* ===================================
   МОБИЛЬНЫЙ БЛОК ИНФОРМАЦИИ (над картой)
   =================================== */
/* Мобильный блок скрыт по умолчанию (показывается только на мобилках) */
body.page-office .office-mobile-info {
  display: none;
  width: 100%;
  background: #ffffff;
  padding: 20px 20px 0;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  order: 1;
}

body.page-office .office-mobile-info__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  margin-top: 90px;
}

body.page-office .office-mobile-info__breadcrumb-item {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.209;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}
body.page-office .office-mobile-info__breadcrumb-item:hover {
  color: #2d2d2d;
}
body.page-office .office-mobile-info__breadcrumb-item--active {
  font-weight: 700;
  color: #2d2d2d;
  text-transform: uppercase;
}

body.page-office .office-mobile-info__breadcrumb-dot {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
}

body.page-office .office-mobile-info__header {
  margin-bottom: 20px;
}

body.page-office .office-mobile-info__header-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

body.page-office .office-mobile-info__plus {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ff462e;
  width: 5.97px;
  height: 6.19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6.25px;
  flex-shrink: 0;
}

body.page-office .office-mobile-info__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

body.page-office .office-mobile-info__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

body.page-office .office-mobile-info__content {
  background: #f5f4f3;
  padding: 20px 0;
  margin: 0 -20px;
  border-radius: 0;
}

body.page-office .office-mobile-info__location {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

body.page-office .office-mobile-info__dot {
  width: 6px;
  height: 6px;
  background: #2d2d2d;
  border-radius: 50%;
  margin-right: 19px;
}

body.page-office .office-mobile-info__location-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

body.page-office .office-mobile-info__details {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 0 20px;
}

body.page-office .office-mobile-info__contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.page-office .office-mobile-info__icon {
  width: 20px;
  height: 20px;
  border: 0.5px solid #6b6b6b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

body.page-office .office-mobile-info__address {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  max-width: 286px;
  text-decoration: underline;
}

body.page-office .office-mobile-info__contact-info {
  display: flex;
  gap: 25px;
}

body.page-office .office-mobile-info__phone {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
  color: #6b6b6b;
  text-decoration: underline;
}

body.page-office .office-mobile-info__email {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  color: #6b6b6b;
  text-decoration: underline;
}

/* ===================================
   АДАПТИВНАЯ ЛОГИКА
   =================================== */
/* Основной wrapper теперь использует flexbox для order */
body.page-office .office-map-wrapper {
  display: flex;
  flex-direction: column;
}

body.page-office #yandex-map-container {
  order: 2;
}

/* Адаптивность */
@media (max-width: 992px) {
  /* На мобилках: показываем мобильный блок, скрываем всю основную панель */
  body.page-office .office-mobile-info {
    display: block;
  }
  body.page-office .office-info-panel {
    display: none;
  }
  body.page-office .office-map-wrapper {
    height: auto;
  }
  body.page-office #yandex-map-container {
    height: 500px;
  }
  body.page-office .office-info-panel {
    width: calc(100% - 40px);
    height: auto;
    top: 20px;
    right: 20px;
    left: 20px;
    position: relative;
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  body.page-office .office-map-wrapper {
    height: auto;
  }
  body.page-office #yandex-map-container {
    height: 400px;
  }
  body.page-office .office-mobile-info {
    padding: 15px 15px 0;
  }
  body.page-office .office-mobile-info__title {
    font-size: 18px;
  }
  body.page-office .office-mobile-info__content {
    padding: 15px 0;
    margin: 0 -15px;
  }
  body.page-office .office-mobile-info__location,
  body.page-office .office-mobile-info__details {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  body.page-office .office-map-wrapper {
    height: auto;
  }
  body.page-office #yandex-map-container {
    height: 300px;
  }
  body.page-office .office-mobile-info {
    padding: 10px 10px 0;
  }
  body.page-office .office-mobile-info__title {
    font-size: 16px;
  }
  body.page-office .office-mobile-info__content {
    padding: 10px 0;
    margin: 0 -10px;
  }
  body.page-office .office-mobile-info__location,
  body.page-office .office-mobile-info__details {
    padding: 0 10px;
  }
  body.page-office .office-mobile-info__contact-info {
    flex-direction: column;
    gap: 8px;
  }
}
/* Contacts Page */
.contacts-layout {
  display: flex;
  width: 100%;
  height: 800px;
}

.contacts-map {
  width: 66.67%;
  position: relative;
}
.contacts-map #yandex-map-container {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
}

body.page-contacts .header {
  background: #fff;
}
body.page-contacts .header .header__brand {
  color: #2d2d2d;
}
body.page-contacts .header .nav-item--active .nav-link {
  color: #2d2d2d;
}
body.page-contacts .header .nav-link:hover {
  color: #2d2d2d;
}
body.page-contacts .header .social-text {
  color: #2d2d2d;
}
body.page-contacts .header .social-text::after {
  background-color: #2d2d2d;
}
body.page-contacts .header .btn-currency {
  background: #f5f4f3;
  color: #2d2d2d;
}
body.page-contacts .header .btn-currency__text {
  color: #2d2d2d;
}
body.page-contacts .header .btn-favorite {
  background: #f5f4f3;
}
body.page-contacts .header .btn-favorite:hover {
  background: #ff462e;
}
body.page-contacts .header .btn-favorite:hover::after {
  filter: brightness(0) invert(1);
}
body.page-contacts .header .btn-favorite:not(:hover) {
  background: #f5f4f3;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 10;
  pointer-events: none;
}
.map-marker__icon {
  width: 100px;
  height: 100px;
  position: relative;
}
.map-marker__icon svg {
  width: 100%;
  height: 100%;
}
.map-marker__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Onest", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.275;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-align: center;
}

.contacts-panel {
  width: 33.33%;
  padding: 40px 140px 40px 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-panel__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-panel__title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 80px;
}

.contacts-panel__plus {
  color: #ff462e;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

.contacts-panel__badge {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

.contacts-panel__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

.contacts-panel__form-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts-panel__form-subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  background: transparent;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #000000;
}
.form-input::-moz-placeholder {
  color: #000000;
}
.form-input::placeholder {
  color: #000000;
}
.form-input:focus {
  outline: none;
  border-bottom-color: #ff462e;
}

.form-submit {
  width: 100%;
  padding: 8px 90px;
  background: #2d2d2d;
  border: none;
  border-radius: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366;
  letter-spacing: -0.02em;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-submit:hover {
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}

.form-disclaimer {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 1.2;
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}

.contacts-panel__info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: auto;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-dot {
  width: 6px;
  height: 6px;
  background: #2d2d2d;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

.contact-info-content {
  margin-left: 14px;
}

.contact-info-row {
  display: flex;
  gap: 30px;
  align-items: center;
  text-decoration: underline;
}

.contact-phone,
.contact-email {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  color: #6b6b6b;
  text-decoration: underline;
  margin: 0;
}
.contact-phone:hover,
.contact-email:hover {
  color: #ff462e;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  text-decoration: underline;
}

.social-link {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.366;
  text-transform: uppercase;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-link:hover {
  color: #ff462e;
}

@media (max-width: 1200px) {
  .contacts-panel {
    padding: 30px 80px 30px 30px;
  }
}
@media (max-width: 992px) {
  .contacts-layout {
    flex-direction: column;
    height: auto;
  }
  .contacts-map {
    width: 100%;
    height: 400px;
    order: 2;
  }
  .contacts-panel {
    width: 100%;
    padding: 40px 20px;
    order: 1;
  }
}
@media (max-width: 768px) {
  .contacts-panel {
    padding: 30px 15px;
    gap: 30px;
  }
  .contacts-panel__title {
    font-size: 24px;
  }
  .social-links {
    gap: 15px;
  }
}
/* FAQ Page */
body.page-faq .header {
  background: #fff;
}
body.page-faq .header .header__brand {
  color: #2d2d2d;
}
body.page-faq .header .nav-item--active .nav-link {
  color: #2d2d2d;
}
body.page-faq .header .nav-link:hover {
  color: #2d2d2d;
}
body.page-faq .header .social-text {
  color: #2d2d2d;
}
body.page-faq .header .social-text::after {
  background-color: #2d2d2d;
}
body.page-faq .header .btn-currency {
  background: #f5f4f3;
  color: #2d2d2d;
}
body.page-faq .header .btn-currency__text {
  color: #2d2d2d;
}
body.page-faq .header .btn-favorite {
  background: #f5f4f3;
}
body.page-faq .header .btn-favorite:hover {
  background: #ff462e;
}
body.page-faq .header .btn-favorite:hover::after {
  filter: brightness(0) invert(1);
}
body.page-faq .header .btn-favorite:not(:hover) {
  background: #f5f4f3;
}

.faq-content {
  padding: 120px 0 80px;
  background: #ffffff;
}

.faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 55px;
}

.breadcrumb-item {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.209;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: #2d2d2d;
}
.breadcrumb-item--active {
  font-weight: 700;
  color: #2d2d2d;
}

.breadcrumb-separator {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
}

.faq-header {
  margin-bottom: 20px;
}

.faq-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.faq-plus {
  color: #ff462e;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.faq-badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

.faq-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

.faq-accordion {
  margin-bottom: 80px;
}

.faq-item {
  border-bottom: 1px solid #d9d9d9;
}
.faq-item:first-child {
  border-top: 1px solid #d9d9d9;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-number {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.1;
  color: #2d2d2d;
  width: 32px;
  flex-shrink: 0;
  margin-right: 144px;
}

.faq-question-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #2d2d2d;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  margin-left: auto;
  padding-left: 20px;
}

.faq-plus-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #343330;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.page-faq .faq-answer-content {
  padding: 12px 16px 16px 176px;
}

.page-car .faq-answer-content {
  padding: 12px 16px 16px 32px;
}

.faq-answer-content {
  padding: 12px 16px 16px 32px;
}
.faq-answer-content p {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin: 0 0 16px 0;
}
.faq-answer-content p:last-child {
  margin-bottom: 0;
}
.faq-answer-content ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style-type: disc !important;
  list-style-position: outside;
}
.faq-answer-content ul li {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-bottom: 8px;
  display: list-item !important;
  list-style: disc !important;
}
.faq-answer-content ul li:last-child {
  margin-bottom: 0;
}
.faq-answer-content ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style-type: decimal !important;
  list-style-position: outside;
}
.faq-answer-content ol li {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  margin-bottom: 8px;
  display: list-item !important;
  list-style: decimal !important;
}
.faq-answer-content ol li:last-child {
  margin-bottom: 0;
}
.faq-answer-content strong {
  font-weight: 500;
  color: #2d2d2d;
}

.faq-item--active .faq-plus-icon {
  transform: rotate(45deg);
}

.faq-process {
  background: #f8f8f8;
  padding: 60px;
  border-radius: 12px;
  margin-top: 80px;
}

.process-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.process-icon {
  font-size: 24px;
}

.process-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

.process-list {
  counter-reset: process-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  counter-increment: process-counter;
  position: relative;
  padding: 16px 0 16px 60px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: #2d2d2d;
  border-bottom: 1px solid #e0e0e0;
}
.process-list li:last-child {
  border-bottom: none;
}
.process-list li::before {
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 16px;
  width: 32px;
  height: 32px;
  background: #ff462e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .faq-content {
    padding: 80px 0 60px;
  }
  .faq-number {
    margin-right: 80px;
  }
  .page-faq .faq-answer-content {
    padding: 12px 100px 16px 100px;
  }
  .faq-process {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .faq-content {
    padding: 60px 0 40px;
  }
  .faq-title {
    font-size: 28px;
  }
  .faq-number {
    margin-right: 40px;
  }
  .faq-question-text {
    font-size: 14px;
  }
  .faq-answer-content {
    padding: 12px 60px 16px 60px;
  }
  .faq-process {
    padding: 30px;
    margin-top: 60px;
  }
  .process-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .faq-content {
    padding: 40px 0 30px;
  }
  .faq-title {
    font-size: 24px;
  }
  .faq-question {
    position: relative;
    padding: 20px 0;
    justify-content: center;
  }
  .faq-number {
    display: none;
  }
  .faq-question-text {
    margin: 0;
    padding: 0;
  }
  .faq-plus-icon {
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #2d2d2d;
    transition: all 0.3s ease;
  }
  .faq-item--active .faq-plus-icon {
    transform: rotate(45deg);
  }
  .faq-answer-content {
    padding: 0 0 20px 0;
  }
  .faq-answer-content ul,
  .faq-answer-content ol {
    padding-left: 20px;
  }
  .faq-process {
    padding: 20px;
    margin-top: 40px;
  }
  .process-list li {
    padding: 12px 0 12px 50px;
    font-size: 14px;
  }
  .process-list li::before {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: 12px;
  }
  .page-faq .faq-answer-content {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .faq-plus-icon {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
}
/* Blog Page */
/* ===================================
   BLOG PAGE STYLES
   =================================== */
.page-blog {
  background: #ffffff;
}

body.page-blog .header {
  background: #fff;
}
body.page-blog .header .header__brand {
  color: #2d2d2d;
}
body.page-blog .header .nav-item--active .nav-link {
  color: #2d2d2d;
}
body.page-blog .header .nav-link:hover {
  color: #2d2d2d;
}
body.page-blog .header .social-text {
  color: #2d2d2d;
}
body.page-blog .header .social-text::after {
  background-color: #2d2d2d;
}
body.page-blog .header .btn-currency {
  background: #f5f4f3;
  color: #2d2d2d;
}
body.page-blog .header .btn-currency__text {
  color: #2d2d2d;
}
body.page-blog .header .btn-favorite {
  background: #f5f4f3;
}
body.page-blog .header .btn-favorite:hover {
  background: #ff462e;
}
body.page-blog .header .btn-favorite:hover::after {
  filter: brightness(0) invert(1);
}
body.page-blog .header .btn-favorite:not(:hover) {
  background: #f5f4f3;
}

/* ===================================
   BREADCRUMB
   =================================== */
.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 40px 0;
}

.breadcrumb-item {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.209;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item:hover {
  color: #2d2d2d;
}
.breadcrumb-item--active {
  font-weight: 700;
  color: #2d2d2d;
}

.breadcrumb-separator {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog {
  padding: 35px 0 120px 0;
  background: #ffffff;
}
.blog__title-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.blog__plus {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog__title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.blog__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.blog__content {
  width: 100%;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.blog-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-plus {
  color: #ff462e;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.blog-badge-text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

.blog-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

/* ===================================
   VIDEO CARD
   =================================== */
.video-card {
  background: #f5f4f3;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 265px;
  transition: transform 0.3s ease;
}
.video-card:hover .video-card__image img {
  transform: scale(1.05);
  filter: blur(2px);
}
.video-card:hover .video-card__button-arrow {
  animation: video-arrow-slide-right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.video-card:not(:hover) .video-card__button-arrow {
  animation: video-arrow-slide-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.video-card__image {
  position: relative;
  height: 198px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.video-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.video-card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 86px;
}
.video-card__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
  flex: 1;
  min-width: 0; /* Позволяет тексту сжиматься */
}
.video-card__button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0; /* Кнопка не сжимается */
}
.video-card__button:active {
  transform: translateY(0);
}
.video-card__button-text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.19;
  text-transform: uppercase;
  color: #2d2d2d;
  white-space: nowrap; /* Текст кнопки не переносится */
}
.video-card__button-icon {
  position: relative;
  width: 29px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__button-circle {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
  z-index: 1;
}
.video-card__button-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  z-index: 2;
  filter: brightness(0) invert(1);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes video-arrow-slide-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(12px);
  }
  51% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes video-arrow-slide-left {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-12px);
  }
  51% {
    opacity: 0;
    transform: translateX(12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1000px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .blog {
    padding: 0 0 80px 0;
  }
  .blog__subtitle {
    font-size: 24px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-card {
    height: 300px;
  }
  .video-card__image {
    height: 220px;
  }
  .video-card__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px; /* Уменьшил gap для мобилок */
  }
  .video-card__title {
    font-size: 13px; /* Немного уменьшил размер шрифта для лучшего помещения */
  }
  .video-card__button-text {
    font-size: 11px; /* Немного уменьшил размер шрифта кнопки */
  }
}
@media (max-width: 480px) {
  .blog__subtitle {
    font-size: 20px;
  }
  .video-card {
    height: 280px;
  }
  .video-card__image {
    height: 200px;
  }
  .video-card__content {
    gap: 8px; /* Еще меньше gap для очень маленьких экранов */
  }
  .video-card__title {
    font-size: 12px;
  }
  .video-card__button-text {
    font-size: 10px;
  }
  .video-card__button {
    gap: 8px; /* Уменьшил gap внутри кнопки */
  }
  .video-card__play {
    width: 50px;
    height: 50px;
  }
  .video-card__play-icon {
    width: 20px;
    height: 20px;
  }
  .video-card__play-icon img {
    width: 14px;
    height: 14px;
  }
}
/* Car Page */
.car-hero {
  background: #2d2d2d url("../image/bg-car.svg") center top no-repeat;
  background-size: cover;
  position: relative;
  height: 679px;
  overflow: hidden;
  background-position-x: -155px;
}
.car-hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.car-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 216px;
}
.car-hero__breadcrumb .breadcrumb-item {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.car-hero__breadcrumb .breadcrumb-item:hover {
  color: #ff462e;
}
.car-hero__breadcrumb .breadcrumb-item--active {
  font-weight: 700;
  text-transform: uppercase;
}
.car-hero__breadcrumb .breadcrumb-separator {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
}
.car-hero__breadcrumb .breadcrumb-separator.white {
  background: #fff;
}
.car-hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 160px;
  align-items: start;
  flex: 1;
}
.car-hero__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.car-hero__year-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 12px;
}
.car-hero__year-badge .year-badge__icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.car-hero__year-badge .year-badge__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
}
.car-hero .year-badge__share-circle {
  width: 32px;
  height: 32px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.car-hero .year-badge__share-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.car-hero__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
.car-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.car-hero__actions .btn-hero {
  width: 165px;
  margin-top: 0;
}
.car-hero__actions .catalog-link {
  color: #ffffff;
  margin-top: 30px;
}
.car-hero__actions .catalog-link .catalog-link__text::after {
  background-color: #ffffff;
}
.car-hero__actions .catalog-link .catalog-link__arrow {
  color: #ffffff;
}

.car-hero__main-flex {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 160px;
}

.car-specs {
  position: relative;
  width: 418px;
  height: 352px;
  top: -13px;
}
.car-specs__indicator {
  position: absolute;
  left: 0;
  top: 222px;
  width: 20px;
  height: 130px;
  background-color: #ff462e;
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}
.car-specs__indicator::after {
  content: "Характеристики";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.car-specs__main {
  position: absolute;
  left: 20px;
  top: 0;
  width: 398px;
  height: 352px;
  background-color: #373737;
  border-radius: 10px 10px 0 0;
}
.car-specs__list {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 359px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.car-specs__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.car-specs__key {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  text-align: left;
}
.car-specs__value {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  text-align: right;
}
.car-specs__divider {
  position: absolute;
  left: 20px;
  top: 280px;
  width: 359px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.car-specs__bottom {
  position: absolute;
  left: 20px;
  bottom: 30px;
  width: 359px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.car-specs__stages-btn {
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.3s ease;
  position: relative;
}
.car-specs__stages-btn::after {
  content: "";
  position: absolute;
  bottom: 10%;
  transform: translateY(10%);
  right: -20px;
  width: 15px;
  height: 15px;
  rotate: -45deg;
  background-image: url("../image/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 1;
}
.car-specs__stages-btn:hover {
  color: #ff462e;
}
.car-specs__price {
  position: static;
  width: auto;
  height: auto;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .car-hero__content {
    grid-template-columns: 1fr 380px;
    gap: 80px;
  }
  .car-specs {
    width: 380px;
    height: 320px;
    transform: scale(0.9);
    transform-origin: top right;
  }
}
@media (max-width: 900px) {
  .car-hero__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .car-hero__main-flex {
    flex-direction: column;
    gap: 32px;
  }
  .car-hero__specs {
    width: 100%;
    max-width: 100%;
  }
}
.car-features__dropdown {
  display: none;
}

@media (max-width: 768px) {
  .car-hero {
    height: auto;
    min-height: 480px;
    background-position-x: -770px;
  }
  .car-hero__inner {
    padding: 60px 0 40px;
  }
  .car-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .car-hero__title {
    font-size: 48px;
  }
  .car-hero__info {
    gap: 15px;
  }
  .car-hero__actions {
    align-items: flex-start;
    gap: 16px;
  }
  .car-specs {
    width: 100%;
    height: auto;
    transform: none;
    position: relative;
    background: #373737;
    border-radius: 10px;
    margin-bottom: 24px;
  }
  .car-specs__indicator {
    display: none;
  }
  .car-specs__indicator--mobile {
    display: block;
    width: 100%;
    height: 3px;
    background: #ff462e;
    border-radius: 2px;
    margin-bottom: 20px;
    transform: rotate(0deg);
  }
  .car-specs__main {
    position: static;
    width: 100%;
    height: auto;
    padding: 20px 10px 20px 10px;
    background: transparent;
    border-radius: 0;
  }
  .car-specs__list {
    position: static;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .car-specs__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
    padding: 2px 0;
  }
  .car-specs__key, .car-specs__value {
    font-size: 12px;
    word-break: break-word;
  }
  .car-specs__divider {
    position: static;
    width: 100%;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.15);
  }
  .car-specs__bottom {
    position: static;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
  }
  .car-specs__price {
    font-size: 24px;
    text-align: left;
    margin-top: 8px;
  }
  .car-features__tabs {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .car-features__tabs {
    display: none;
  }
  .car-features__dropdown {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    background: #2d2d2d;
    color: #fff;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../image/icons/dropdown-white.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 10px 10px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .car-features__dropdown option {
    background: #fff;
    color: #2d2d2d;
    font-size: 16px;
    border-radius: 0;
  }
}
/* ===================================
   CAR MEDIA SLIDER SECTION
   =================================== */
.car-media-slider {
  position: relative;
  width: 100%;
  height: 670px;
  overflow: hidden;
  background: transparent;
}
.car-media-slider__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.car-media-slider__wrapper {
  width: 100%;
  height: 100%;
}
.car-media-slider__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.car-media-slider__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.car-media-slider__play-btn {
  position: absolute;
  left: 140px;
  bottom: 40px;
  width: 100px;
  height: 100px;
  background: #ff462e;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}
.car-media-slider__play-btn:hover {
  background: #e23e26;
  transform: scale(1.05);
}
.car-media-slider__play-btn:active {
  transform: scale(0.95);
}
.car-media-slider__play-btn svg {
  width: 19px;
  height: 19px;
  margin-left: 2px;
}
.car-media-slider__pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.car-media-slider__pagination-line {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.car-media-slider__pagination-line.active {
  background: #ffffff;
}
.car-media-slider__pagination-line:hover {
  background: rgba(255, 255, 255, 0.6);
}
.car-media-slider__pagination-line.active:hover {
  background: #ffffff;
}

.car-media-slider .swiper-wrapper {
  transition-timing-function: ease-in-out;
}

.car-media-slider .swiper-slide {
  transition: opacity 0.5s ease-in-out;
}

@media (max-width: 1440px) {
  .car-media-slider {
    height: 60vw;
    max-height: 670px;
    min-height: 400px;
  }
  .car-media-slider__play-btn {
    left: 10vw;
    bottom: 8vw;
    width: 80px;
    height: 80px;
  }
  .car-media-slider__play-btn svg {
    width: 16px;
    height: 16px;
  }
  .car-media-slider__pagination {
    bottom: 6vw;
  }
  .car-media-slider__pagination-line {
    width: 30px;
    height: 3px;
  }
}
@media (max-width: 768px) {
  .car-media-slider {
    height: 70vw;
    max-height: 500px;
    min-height: 300px;
  }
  .car-media-slider__play-btn {
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
  }
  .car-media-slider__play-btn svg {
    width: 12px;
    height: 12px;
  }
  .car-media-slider__pagination {
    bottom: 20px;
    gap: 8px;
  }
  .car-media-slider__pagination-line {
    width: 24px;
    height: 2px;
  }
}
@media (max-width: 480px) {
  .car-media-slider {
    height: 80vw;
    max-height: 400px;
  }
  .car-media-slider__play-btn {
    left: 15px;
    bottom: 60px;
    width: 50px;
    height: 50px;
  }
  .car-media-slider__play-btn svg {
    width: 10px;
    height: 10px;
  }
  .car-media-slider__pagination {
    bottom: 15px;
    gap: 6px;
  }
  .car-media-slider__pagination-line {
    width: 20px;
  }
}
.swiper-slide.slide-image .car-media-slider__play-btn {
  display: none !important;
}

/* ===================================
   CAR FEATURES SECTION
   =================================== */
.car-features {
  padding: 80px 0;
  background: #ffffff;
}
.car-features__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.car-features__header {
  text-align: center;
  margin-bottom: 30px;
}
.car-features__title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 12px;
}
.car-features__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
}
.car-features__tabs {
  display: flex;
  margin-bottom: 30px;
  border-radius: 40px;
  overflow: hidden;
  background: transparent;
}
.car-features__tab {
  flex: 1;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid #6b6b6b;
  border-right: none;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6b6b6b;
  cursor: pointer;
  transition: all 0.3s ease;
}
.car-features__tab:first-child {
  border-radius: 40px 0 0 40px;
}
.car-features__tab:last-child {
  border-right: 1px solid #6b6b6b;
  border-radius: 0 40px 40px 0;
}
.car-features__tab--active {
  background: #2d2d2d;
  color: #ffffff;
  border-color: #2d2d2d;
}
.car-features__content {
  position: relative;
}
.car-features__tab-content {
  display: none;
}
.car-features__tab-content--active {
  display: block;
}
.car-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 0;
}
.car-features__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 17px 0;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
.car-features__item:nth-child(4n) {
  border-right: none;
}
.car-features__item:nth-last-child(-n+4) {
  border-bottom: none;
}
.car-features__icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 40px;
}
.car-features__icon--available {
  background: #bcfad2;
  background-image: url("../image/icons/plus-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  color: #343330;
}
.car-features__icon--available svg {
  display: none;
}
.car-features__icon--unavailable {
  background: #ededed;
  color: #343330;
}
.car-features__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
  text-align: right;
  margin-right: 40px;
  flex: 1;
}

@media (max-width: 1440px) {
  .car-features {
    padding: 60px 20px;
  }
  .car-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .car-features__item:nth-child(4n) {
    border-right: 1px solid #d9d9d9;
  }
  .car-features__item:nth-child(3n) {
    border-right: none;
  }
  .car-features__item:nth-last-child(-n+4) {
    border-bottom: 1px solid #d9d9d9;
  }
  .car-features__item:nth-last-child(-n+3) {
    border-bottom: none;
  }
  .car-features__text {
    font-size: 11px;
    margin-right: 20px;
  }
  .car-features__icon {
    margin-left: 20px;
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .car-features {
    padding: 40px 15px;
  }
  .car-features__header {
    margin-bottom: 40px;
  }
  .car-features__title {
    font-size: 20px;
  }
  .car-features__subtitle {
    font-size: 13px;
  }
  .car-features__tabs {
    flex-direction: column;
    border-radius: 8px;
  }
  .car-features__tab {
    border-radius: 0 !important;
    border-right: 1px solid #6b6b6b;
    border-bottom: none;
    padding: 16px 20px;
  }
  .car-features__tab:last-child {
    border-bottom: 1px solid #6b6b6b;
  }
  .car-features__tab--active {
    border-color: #2d2d2d;
  }
  .car-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .car-features__item:nth-child(3n) {
    border-right: 1px solid #d9d9d9;
  }
  .car-features__item:nth-child(2n) {
    border-right: none;
  }
  .car-features__item:nth-last-child(-n+3) {
    border-bottom: 1px solid #d9d9d9;
  }
  .car-features__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .car-features__text {
    font-size: 10px;
    margin-right: 15px;
  }
  .car-features__icon {
    margin-left: 15px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .car-features__grid {
    grid-template-columns: 1fr;
  }
  .car-features__item:nth-child(2n) {
    border-right: none;
  }
  .car-features__item:nth-last-child(-n+2) {
    border-bottom: 1px solid #d9d9d9;
  }
  .car-features__item:last-child {
    border-bottom: none;
  }
  .car-features__text {
    margin-right: 10px;
  }
  .car-features__icon {
    margin-left: 10px;
  }
}
/* Catalog Page */
body.archive .header {
  background: #fff;
}
body.archive .header .header__brand {
  color: #2d2d2d;
}
body.archive .header .nav-item--active .nav-link {
  color: #2d2d2d;
}
body.archive .header .nav-link:hover {
  color: #2d2d2d;
}
body.archive .header .social-text {
  color: #2d2d2d;
}
body.archive .header .social-text::after {
  background-color: #2d2d2d;
}
body.archive .header .btn-currency {
  background: #f5f4f3;
  color: #2d2d2d;
}
body.archive .header .btn-currency__text {
  color: #2d2d2d;
}
body.archive .header .btn-favorite {
  background: #f5f4f3;
}
body.archive .header .btn-favorite:hover {
  background: #ff462e;
}
body.archive .header .btn-favorite:hover::after {
  filter: brightness(0) invert(1);
}
body.archive .header .btn-favorite:not(:hover) {
  background: #f5f4f3;
}

.catalog-content {
  padding: 120px 0 20px;
  background: #ffffff;
}
@media (max-width: 1200px) {
  .catalog-content {
    padding: 20px 0;
  }
}

.catalog-breadcrumbs {
  margin-bottom: 30px;
}
.catalog-breadcrumbs .breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 100%;
}
.catalog-breadcrumbs .breadcrumbs__link {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.catalog-breadcrumbs .breadcrumbs__link:hover {
  color: #2d2d2d;
}
.catalog-breadcrumbs .breadcrumbs__separator {
  width: 6px;
  height: 6px;
  background: #ff462e;
  border-radius: 50%;
}
.catalog-breadcrumbs .breadcrumbs__current {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
}

.catalog-header {
  padding: 0;
  margin-bottom: 30px;
}
.catalog-header__inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.catalog-header__left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.catalog-header__title-section {
  display: flex;
  align-items: center;
  gap: 6px;
}
.catalog-header__plus-icon {
  width: 8px;
  height: 8px;
}
.catalog-header__plus-icon img {
  width: 100%;
  height: 100%;
}
.catalog-header__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}
.catalog-header__categories {
  display: flex;
  align-items: center;
  gap: 20px;
}
.catalog-header__category {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #d1d1d1;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.catalog-header__category:hover {
  color: #2d2d2d;
}
.catalog-header__category--active {
  color: #2d2d2d;
}
.catalog-header__divider {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}
.catalog-header__right {
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.catalog-header__sorting {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 470px;
}
.catalog-header__sort-label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
  align-self: flex-end;
}
.catalog-header__sort-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 7px;
  height: 4px;
}
.catalog-header__sort-btn .sort-dropdown-icon {
  width: 100%;
  height: 100%;
}

.sort-dropdown {
  position: relative;
}
.sort-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 188px;
  height: 150px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.12);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.sort-dropdown__menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sort-dropdown__header {
  position: relative;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 10px;
  margin: 6px 6px 0 6px;
  background: #ff462e;
  border-radius: 4px;
  margin-bottom: 4px;
}
.sort-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sort-dropdown__option {
  width: 100%;
  padding: 4px 17px;
  margin-bottom: 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #2d2d2d;
  cursor: pointer;
  transition: background 0.3s ease;
}
.sort-dropdown__option:hover {
  background: #f5f4f3;
}

.catalog-filters {
  padding: 19px 30px 30px;
  background: #f5f4f3;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .catalog-filters {
    max-width: 1160px;
  }
}
.catalog-filters__inner {
  position: relative;
}
.catalog-filters__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.catalog-filters__row:last-child {
  margin-bottom: 0;
}
.catalog-filters__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.catalog-filters__left-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.catalog-filters__right-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.catalog-filters__reset {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  color: #2d2d2d;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.catalog-filters__reset:hover {
  opacity: 0.7;
}
.catalog-filters__search-btn {
  background: #2d2d2d;
  border: none;
  border-radius: 30px;
  padding: 8px 90px;
  width: 220px;
  height: 34px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.catalog-filters__search-btn:hover {
  background: #1a1a1a;
}
.catalog-filters__advanced {
  display: none;
  margin-top: 20px;
}
.catalog-filters__advanced.active {
  display: block;
}
.catalog-filters__results-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-dropdown {
  position: relative;
  width: 360px;
}
.filter-dropdown--small {
  width: 173px;
}
.filter-dropdown__button {
  background: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  height: 34px;
}
.filter-dropdown__label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
  white-space: nowrap;
}
.filter-dropdown__label.selected {
  color: #ff462e;
  font-weight: 600;
}
.filter-dropdown__icon {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}
.filter-dropdown__icon.active {
  transform: rotate(180deg);
}
.filter-dropdown__menu {
  position: absolute;
  top: 135%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  transform-origin: top;
  overflow: hidden;
}
.filter-dropdown__menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-dropdown__search {
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  display: flex;
  margin: 12px;
  align-items: center;
  border-radius: 40px;
  gap: 8px;
}
.filter-dropdown__search .search-icon {
  width: 14px;
  height: 14px;
}
.filter-dropdown__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
}
.filter-dropdown__search-input::-moz-placeholder {
  color: #6b6b6b;
}
.filter-dropdown__search-input::placeholder {
  color: #6b6b6b;
}
.filter-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}
.filter-dropdown__option {
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  cursor: pointer;
  transition: background 0.3s ease;
}
.filter-dropdown__option:hover,
.filter-dropdown__option.selected {
  background: #ff462e;
  color: #ffffff;
}

.filter-range {
  position: relative;
  width: 360px;
}
.filter-range__inputs {
  background: #ffffff;
  border-radius: 40px;
  padding: 10px 12px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
}
.filter-range__label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
}
.filter-range__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
}
.filter-range__input {
  border: none;
  outline: none;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  background: none;
  width: 60px;
}
.filter-range__input--from {
  text-align: left;
}
.filter-range__input--to {
  text-align: right;
}
.filter-range__separator {
  width: 1px;
  height: 34px;
  background: #ededed;
  margin-left: auto;
  margin-right: 12px;
}
.filter-range__arrows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.filter-range__arrows img {
  width: 7px;
  height: 4px;
}

.filter-search {
  background: #ffffff;
  border-radius: 40px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  width: 360px;
}
.filter-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
}
.filter-search__input::-moz-placeholder {
  color: #6b6b6b;
}
.filter-search__input::placeholder {
  color: #6b6b6b;
}
.filter-search__icon {
  width: 14px;
  height: 14px;
}

.advanced-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.advanced-toggle__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}
.advanced-toggle__icon {
  width: 14px;
  height: 14px;
}
.advanced-toggle__icon img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.advanced-toggle.active .advanced-toggle__icon img {
  transform: rotate(45deg);
}

.advanced-filters__section {
  margin-bottom: 30px;
}
.advanced-filters__title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0 0 20px 0;
}
.advanced-filters__checkboxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .advanced-filters__checkboxes {
    display: flex;
    flex-wrap: wrap;
  }
}
.advanced-filters__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-checkbox {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.filter-checkbox__input {
  display: none;
}
.filter-checkbox__checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #6b6b6b;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.filter-checkbox__checkmark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 1px;
  width: 8px;
  height: 6px;
  background: url("../image/icons/check.svg") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.filter-checkbox__label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
}
.filter-checkbox__input:checked + .filter-checkbox__checkmark {
  border-color: #ff462e;
  background: #ff462e;
}
.filter-checkbox__input:checked + .filter-checkbox__checkmark::after {
  opacity: 1;
}

.results-counter__icon {
  width: 16px;
  height: 16px;
}
.results-counter__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #2d2d2d;
}

.catalog-filters__results-counter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 8px;
}
.catalog-filters__results-counter .results-counter__icon {
  width: 16px;
  height: 16px;
}
.catalog-filters__results-counter .results-counter__text {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2d2d2d;
}

.catalog {
  padding: 20px 0 120px 0;
}
.catalog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.catalog__load-more {
  margin-top: 40px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.btn-load-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 8px 8px 18px;
  background: #f5f4f3;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 147px;
  height: auto;
  min-height: 44px;
  overflow: hidden;
}
.btn-load-more:hover {
  background: #eeeeee;
}
.btn-load-more:hover .btn-load-more__arrow {
  animation: load-more-arrow-slide-down 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-load-more:hover .btn-load-more__main {
  animation: load-more-text-slide-down 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-load-more:not(:hover) .btn-load-more__arrow {
  animation: load-more-arrow-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-load-more:not(:hover) .btn-load-more__main {
  animation: load-more-text-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.btn-load-more:active {
  transform: translateY(0);
}
.btn-load-more__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.btn-load-more__main {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.193;
  text-transform: uppercase;
  color: #2d2d2d;
  display: block;
}
.btn-load-more__icon {
  position: relative;
  width: 29px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-load-more__circle {
  position: absolute;
  top: 0;
  left: 0.47px;
  width: 28px;
  height: 28px;
  background: #ff462e;
  border-radius: 50%;
}
.btn-load-more__arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}
.btn-load-more.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-load-more.loading .btn-load-more__arrow,
.btn-load-more.loading .btn-load-more__main {
  animation: none !important;
}

@keyframes load-more-arrow-slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load-more-arrow-slide-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load-more-text-slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load-more-text-slide-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0;
  }
  51% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 1440px) {
  .catalog-filters__inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .catalog-header__sorting {
    margin-left: 200px;
  }
  .catalog-filters__row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .catalog-filters__controls {
    flex-wrap: wrap;
    gap: 15px;
  }
  .filter-dropdown,
  .filter-range,
  .filter-search {
    width: calc(50% - 5px);
    min-width: 280px;
  }
  .filter-dropdown--small {
    width: calc(25% - 8px);
    min-width: 160px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .catalog-header__sorting {
    margin-left: 50px;
  }
}
@media (max-width: 768px) {
  .catalog-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .catalog-header__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .catalog-header__categories {
    flex-wrap: wrap;
    gap: 10px;
  }
  .catalog-header__right {
    width: 100%;
    justify-content: flex-end;
  }
  .catalog-header__sorting {
    margin-left: 0;
  }
  .catalog-filters__inner {
    padding: 0 15px;
  }
  .catalog-filters__row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .catalog-filters__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 0 15px;
  }
  .catalog-filters__advanced {
    padding: 0 15px;
  }
  .filter-dropdown,
  .filter-range,
  .filter-search,
  .filter-dropdown--small {
    width: 100%;
  }
  .advanced-filters__checkboxes {
    flex-direction: column;
    gap: 15px;
  }
  .advanced-filters__checkbox-group {
    gap: 15px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .breadcrumbs {
    padding: 100px 0 20px;
  }
  .catalog-header {
    padding: 20px 0;
  }
  .catalog-header__title {
    font-size: 20px;
  }
  .catalog-filters {
    padding: 15px 0 25px;
    margin-bottom: 30px;
  }
  .catalog {
    padding: 30px 0 80px;
  }
}
.filter-dropdown__empty {
  font-size: 12px;
  padding: 10px;
}

/* Calculator Page */
body.page-calculator .header {
  background: #fff;
}
body.page-calculator .header .header__brand {
  color: #2d2d2d;
}
body.page-calculator .header .nav-item--active .nav-link {
  color: #2d2d2d;
}
body.page-calculator .header .nav-link:hover {
  color: #2d2d2d;
}
body.page-calculator .header .social-text {
  color: #2d2d2d;
}
body.page-calculator .header .social-text::after {
  background-color: #2d2d2d;
}
body.page-calculator .header .btn-currency {
  background: #f5f4f3;
  color: #2d2d2d;
}
body.page-calculator .header .btn-currency__text {
  color: #2d2d2d;
}
body.page-calculator .header .btn-favorite {
  background: #f5f4f3;
}
body.page-calculator .header .btn-favorite:hover {
  background: #ff462e;
}
body.page-calculator .header .btn-favorite:hover::after {
  filter: brightness(0) invert(1);
}
body.page-calculator .header .btn-favorite:not(:hover) {
  background: #f5f4f3;
}

.page-calculator .calculator-content {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-calculator .calculator-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.page-calculator .calculator-background {
  position: absolute;
  top: 595px;
  right: -400px;
  width: 985px;
  height: 524px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .page-calculator .calculator-background {
    right: -300px;
    opacity: 0.2;
  }
}
@media (max-width: 768px) {
  .page-calculator .calculator-background {
    display: none;
  }
}
.page-calculator .calculator-background .calculator-bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-calculator .calculator-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 95px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .page-calculator .calculator-breadcrumb {
    margin-bottom: 60px;
  }
}
.page-calculator .calculator-breadcrumb .breadcrumb-item {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.21;
  color: #6b6b6b;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-calculator .calculator-breadcrumb .breadcrumb-item:hover {
  color: #2d2d2d;
}
.page-calculator .calculator-breadcrumb .breadcrumb-item--active {
  font-weight: 700;
  color: #2d2d2d;
}
.page-calculator .calculator-breadcrumb .breadcrumb-separator {
  width: 6px;
  height: 6px;
  background-color: #ff462e;
  border-radius: 50%;
}
.page-calculator .calculator-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .page-calculator .calculator-header {
    margin-bottom: 60px;
  }
}
.page-calculator .calculator-icon {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .page-calculator .calculator-icon {
    display: none;
  }
}
.page-calculator .calculator-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 20px;
  max-width: 776px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .page-calculator .calculator-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.page-calculator .calculator-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6b6b6b;
  max-width: 484px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .page-calculator .calculator-description {
    font-size: 13px;
  }
}
.page-calculator .calculator-form {
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-calculator .calculator-form {
    max-width: 100%;
    padding: 0 20px;
  }
}
.page-calculator .calculator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .page-calculator .calculator__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.page-calculator .calculator__input-group,
.page-calculator .calculator__select-group {
  width: 100%;
}
.page-calculator .calculator__field {
  position: relative;
  width: 100%;
  height: 44px;
  border: 1px solid #ededed;
  border-radius: 5px;
  background: #ffffff;
}
.page-calculator .calculator__field--select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.page-calculator .calculator__input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
}
.page-calculator .calculator__input::-moz-placeholder {
  color: #6b6b6b;
}
.page-calculator .calculator__input::placeholder {
  color: #6b6b6b;
}
.page-calculator .calculator__input:focus {
  border-color: #ff462e;
}
.page-calculator .calculator__select {
  width: calc(100% - 22px);
  border: none;
  outline: none;
  background: transparent;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.page-calculator .calculator__select option {
  color: #2d2d2d;
}
.page-calculator .calculator__select:focus {
  outline: none;
}
.page-calculator .calculator__select-arrow {
  width: 10px;
  height: 10px;
  pointer-events: none;
  flex-shrink: 0;
}
.page-calculator .calculator__select-dropdown {
  position: relative;
  width: 100%;
}
.page-calculator .calculator__select-dropdown__button {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 5px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  height: 44px;
}
.page-calculator .calculator__select-dropdown__label {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #2d2d2d;
  white-space: nowrap;
}
.page-calculator .calculator__select-dropdown__icon {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}
.page-calculator .calculator__select-dropdown__icon.active {
  transform: rotate(180deg);
}
.page-calculator .calculator__select-dropdown__menu {
  position: absolute;
  top: 135%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  transform-origin: top;
}
.page-calculator .calculator__select-dropdown__menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-calculator .calculator__select-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}
.page-calculator .calculator__select-dropdown__option {
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
  cursor: pointer;
  transition: background 0.3s ease;
}
.page-calculator .calculator__select-dropdown__option:hover {
  background: #ff462e;
  color: #ffffff;
}
.page-calculator .calculator__checkboxes {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 64px;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .page-calculator .calculator__checkboxes {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.page-calculator .calculator__checkbox-group {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .page-calculator .calculator__checkbox-group {
    flex-wrap: wrap;
  }
}
.page-calculator .calculator__checkbox-item {
  display: flex;
  align-items: center;
}
.page-calculator .calculator__checkbox {
  display: none;
}
.page-calculator .calculator__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #6b6b6b;
}
.page-calculator .calculator__checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #6b6b6b;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.page-calculator .calculator__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6px;
  height: 4px;
  border: 2px solid #343330;
  border-top: none;
  border-right: none;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  transition: all 0.2s ease;
}
.page-calculator .calculator__checkbox:checked + .calculator__checkbox-label .calculator__checkbox-custom {
  border-color: #2d2d2d;
  background: transparent;
}
.page-calculator .calculator__checkbox:checked + .calculator__checkbox-label .calculator__checkbox-custom::after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}
.page-calculator .calculator__checkbox:checked + .calculator__checkbox-label .calculator__checkbox-text {
  color: #6b6b6b;
}
.page-calculator .calculator__submit {
  text-align: center;
}
.page-calculator .calculator__btn {
  width: 360px;
  height: 38px;
  background: #2d2d2d;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .page-calculator .calculator__btn {
    width: 100%;
    max-width: 360px;
  }
}
.page-calculator .calculator__btn:hover {
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
}
@media (max-width: 768px) {
  .page-calculator .calculator__grid .calculator__select-group:nth-child(2) {
    order: 4;
  }
  .page-calculator .calculator__grid .calculator__input-group:nth-child(3) {
    order: 2;
  }
  .page-calculator .calculator__grid .calculator__select-group:nth-child(4) {
    order: 3;
  }
  .page-calculator .calculator__grid .calculator__select-group:nth-child(5) {
    order: 5;
  }
  .page-calculator .calculator__grid .calculator__select-group:nth-child(6) {
    order: 6;
  }
  .page-calculator .calculator__grid .calculator__input-group:nth-child(7) {
    order: 7;
  }
  .page-calculator .calculator__grid .calculator__input-group:nth-child(8) {
    order: 8;
  }
}

.calculator__field:focus-within {
  border-color: #ff462e;
  box-shadow: 0 0 0 2px rgba(255, 70, 46, 0.1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
/* Global Variables */
:root {
  --font-family-primary: "Helvetica Neue", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --header-height: 80px;
  --header-height-mobile: 70px;
}

/* Base Typography */
body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: #2d2d2d;
  background-color: #2d2d2d;
}

/* ===================================
   FOOTER STICKY TO BOTTOM
   =================================== */
.main-content {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  margin-bottom: 0;
}

* {
  box-sizing: border-box;
}

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

/* Устранение white space под footer */
html {
  background-color: #2d2d2d;
}

body {
  background-color: #2d2d2d;
}

.main-content {
  background-color: #ffffff;
}

/* Принудительное устранение отступов */
.footer,
.footer-mobile {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

/* Убираем возможные отступы у последних элементов */
.footer *:last-child,
.footer-mobile *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}/*# sourceMappingURL=style.css.map */