@font-face {
  font-family: "Asket Extended";
  src: url("/assets/fonts/Asket-Extended-Light.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Light.woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-SemiBold.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ––––––– GENERAL ––––––– */
html.menu-init .mobile-menu,
html.menu-init .mobile-menu *,
html.menu-init .burger-btn,
html.menu-init .burger-btn * {
  transition: none !important;
  animation: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #151515;
}
body * {
  font-family: "Manrope", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
h1 {
  color: #fff;
  font-size: 2.25rem;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "Asket Extended", sans-serif;
  font-weight: 800;
  padding: 0 0.5rem;
}
h2 {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Asket Extended", sans-serif;
  font-weight: 800;
}
.body-1 {
  line-height: 1.4;
  font-size: 1.125rem;
  color: white;
}
.body-2 {
  line-height: 1.4;
  font-size: 1.15rem;
  color: #ffffff95;
}
.body-3 {
  line-height: 1.4;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff90;
}

.yellow-border-btn {
  color: #f5c400;
  border: 1px solid #f5c400;
  display: block;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 350px;
  margin: 1rem auto 0;
  text-align: center;
}
.yellow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  color: black;
  text-decoration: none;
  background-color: #f5c400;
  font-weight: 600;
  margin-top: 1.625rem;
  border-radius: 1rem;
  transition: background-color 200ms ease;
}

.yellow-btn:hover {
  background-color: #d1a802;
}

.decor-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.footer-decor-layer {
  overflow: visible;
}

.decor {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.sr-only {
  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;
}

/* ––––––– DECOR ––––––– */
.decor--1 {
  top: 120px;
  left: 20px;
  width: 150px;
  height: auto;
}
.decor--1-1 {
  display: none;
}
.decor--2 {
  top: 102px;
  right: 5px;
  width: 130px;
  height: auto;
}
.decor--3 {
  top: 0;
  left: 60px;
  width: 180px;
  height: auto;
  transform: rotate(90deg);
}
.decor--4 {
  top: 0;
  right: 60px;
  width: 180px;
  height: auto;
  transform: rotate(90deg);
}
.decor--4-1 {
  display: none;
}

.decor--5 {
  top: -20px;
  right: 50px;
  width: 180px;
  height: auto;
}
.decor--6 {
  top: 95px;
  right: 10px;
  width: 180px;
  height: auto;
  transform: rotate(180deg);
}
.decor--7 {
  top: -90px;
  right: calc(50% - 70px);
  width: 180px;
  height: auto;
  transform: rotate(90deg);
}
.decor--7-1 {
  display: none;
}
.decor--8 {
  top: 90px;
  right: 55px;
  width: 180px;
  height: auto;
}
/*PULSE YELLOW BTN */
.pulse {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    visibility 0s linear 350ms;
}

.pulse.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    visibility 0s;
}

.pulse img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 3;
  display: block;
}

.pulse::after {
  display: none;
}

.pulse::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.22);
  box-shadow: 0 0 0 8px rgba(255, 204, 0, 0.18);
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: pulseYellow 3s ease-out infinite;
}

.pulse:not(.is-visible)::before {
  animation: none;
  opacity: 0;
}

@keyframes pulseYellow {
  0% {
    transform: scale(0.95);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

/* ––––––– HEADER ––––––– */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 1rem 1rem;
  background: linear-gradient(
    to bottom,
    rgba(21, 21, 21, 1) 0%,
    rgba(21, 21, 21, 0.75) 25%,
    rgba(21, 21, 21, 0) 100%
  );
}

.desktop-nav {
  display: none;
}

.burger-btn {
  padding: 1.25rem 1rem;
  background-color: #222222;
  border: 1px solid #383737;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: fit-content;
  border-radius: 1rem;
  z-index: 10000;
  position: relative;
}

.line {
  width: 32px;
  height: 2px;
  background-color: #fbfbfb;
}

.mini-line {
  width: 24px;
  height: 2px;
  background-color: #fbfbfb;
}
.burger-btn .line,
.burger-btn .mini-line {
  transition:
    transform 280ms ease,
    opacity 200ms ease;
  transform-origin: center;
}

.burger-btn.is-open .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger-btn.is-open .mini-line {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;

  display: grid;
  grid-template-rows: 6rem 1fr auto;

  transform: translateY(-100%);
  transition: transform 500ms cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;

  pointer-events: none;
}

.mobile-menu.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-navigation {
  grid-row: 2;
  align-self: center;
  justify-self: center;

  display: flex;
  flex-direction: column;
  gap: 2.5rem;

  text-align: center;
  padding: 0 1rem;
}

.mobile-navigation a {
  color: #fbfbfb;
  text-decoration: none;
  font-family: "Asket Extended", sans-serif;
  font-size: 1.875rem;
  text-transform: uppercase;
  text-align: center;
}

.mobile-footer {
  grid-row: 3;
  padding: 0 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.mobile-footer-heading {
  color: #ffffff50;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.mobile-footer-email {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 400;
}

.mobile-social-media-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.mobile-navigation a {
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1),
    opacity 600ms ease;
}

.mobile-navigation a.is-animated {
  opacity: 1;
  transform: none;
}
/* ––––––– HERO ––––––– */
/* NOTE: critical layout for hero is now inlined in <head>:
   .hero-container (position/overflow/min-height),
   .images-container (position/top/right/flex/gap/z-index),
   .images-left/.images-right (flex/width/gap/margins),
   .hero-text-container (z-index/margin-top/padding/background)
*/

.hero-text {
  color: #ffffffcc;
  margin-top: 0.75rem;
  padding: 0 0.5rem;
}
.stars-block-text {
  font-size: 0.875rem;
}

/* Images appearance + animation (kept in CSS file) */
.images-left img,
.images-right img,
.images-left video {
  width: 100%;
  height: 245px;
  display: block;
  border-radius: 2rem;
  object-fit: cover;
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
}

.images-left img,
.images-left video {
  transform: translateY(-120vh);
}

.images-right img {
  transform: translateY(120vh);
}

.hero-container.is-animated .images-left img,
.hero-container.is-animated .images-right img,
.hero-container.is-animated .images-left video {
  transform: translateY(0);
  opacity: 1;
}

.hero-text-container a.yellow-btn {
  width: 100%;
}

/* Stars */
.stars-block {
  display: flex;
  margin-top: 1.625rem;
  gap: 4px;
  color: white;
  justify-content: center;
  align-items: center;
}

.five-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.five-stars img {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}

/* Button icon (stabilize line box) */
.yellow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.yellow-btn-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 20px;
}

/* See more */
.see-more {
  display: flex;
  margin-top: 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #f5c400;
  text-decoration: none;
  font-size: 0.875rem;
}

.see-more img {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 16px;
}

/* ––––––– WHY-CHOOSE ––––––– */

.why-choose-section {
  padding: 1.875rem 1rem 0;
}

.why-choose-container {
  background-color: #000000;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #ffffff33;
}
.why-choose-decor-img {
  display: none;
}

.why-choose-heading {
  text-align: center;
}
.why-choose-heading img {
  transform: rotate(-4deg);
  padding-top: 0.15rem;
  width: 220px;
}
.why-choose-body {
  margin-top: 1.875rem;
  margin-bottom: 3rem;
}
.why-choose-subcontainer .yellow-btn {
  width: 100%;
}
.why-choose-body-el {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ––––––– STYLES ––––––– */
.styles-section {
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}
.styles-heading {
  padding: 0 1rem;
  margin-bottom: 2.5rem;
}
.styles-heading h2 {
  margin-bottom: 0.75rem;
}
.style-container-cta-heading {
  color: white;
  line-height: 1.4;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.style-container-cta {
  background: black;
  border-radius: 1.5rem;
  border: 1px solid #ffffff33;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.375rem 0.65rem;
  min-height: 250px;
}
.style-container-cta .body-3 {
  color: #ffffff80;
}

.style-container img {
  width: 100%;
  border-radius: 20px;
}

.slider {
  width: 100%;
  position: relative;
}
.slider__track {
  margin-left: 1rem;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  scroll-snap-type: x mandatory;

  scroll-behavior: auto;

  gap: 12px;
  padding-right: calc(100% - 310px);
  margin-bottom: 2.75rem;
}
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #151515, #15151500);
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__slide {
  flex: 0 0 205px;

  scroll-snap-align: start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.slider__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}
.slider__bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}
.slider__bullet.is-active {
  background: rgba(255, 255, 255, 0.95);
  width: 10px;
  height: 10px;
}

.style-element-text {
  text-transform: uppercase;
  color: white;
  margin-top: 0.75rem;
  font-size: 1.55rem;
  font-family: "Asket Extended", sans-serif;
}

.cta-container .yellow-btn {
  width: fit-content;
}

/*Slider in Slider*/
.popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.popup.is-open {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.popup__content {
  position: relative;
  max-width: 760px;
  border-radius: 16px;
  margin: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 500px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__close img {
  width: 12px;
  height: 12px;
}

.popup-slider {
  position: relative;
}
.popup-slider__viewport {
  overflow: hidden;
  border-radius: 12px;
  touch-action: pan-y;
  user-select: none;
}
.popup-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}
.popup-slider__slide {
  flex: 0 0 100%;
}
.popup-slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.popup-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.popup-slider__btn.is-prev {
  left: 10px;
}
.popup-slider__btn.is-next {
  right: 10px;
}

.popup-slider__pagination {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #ffffffb3;
  text-align: center;
  user-select: none;
}

.popup-slider__dots {
  display: flex;
  gap: 3px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.popup-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
}
.popup-slider__dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  width: 10px;
  height: 10px;
}
.popup__text {
  position: absolute;
  bottom: 120px;
  left: 8px;
  right: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 12px;
  font-size: 1.125rem;
  line-height: 1.4;
}

.popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 1000;
}

.popup.is-open {
  visibility: visible;
  opacity: 1;
}

.popup__content {
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 350ms cubic-bezier(0.2, 0.65, 0.3, 1),
    opacity 350ms ease;
}

/* активное состояние */
.popup.is-open.is-animating .popup__content {
  transform: scale(1);
  opacity: 1;
}
/*STUDIO*/

.studio-section {
  padding: 5rem 0 0;
  position: relative;
}

.studio-heading {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.studio-heading h2 {
  max-width: 340px;
}

.center-slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0;
}

.center-slider__viewport {
  overflow: hidden;
  position: relative;
}

.center-slider__track {
  display: flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(0.77, 0, 0.18, 1);
  padding: 12px 14px; /* чтобы тени/скейл не резались */
  touch-action: pan-y;
  user-select: none;
}

.center-slider__slide {
  flex: 0 0 auto;
  width: clamp(220px, 320px, 560px);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  opacity: 0.55;
  filter: saturate(0.9);
  transition:
    transform 420ms cubic-bezier(0.77, 0, 0.18, 1),
    opacity 420ms ease,
    filter 420ms ease;
}

.center-slider__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.center-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 420ms ease;
  pointer-events: none;
}

.center-slider__slide.is-active {
  transform: scale(1);
  opacity: 1;
  filter: none;
}
.center-slider__slide.is-active::after {
  background: rgba(0, 0, 0, 0);
}

.center-slider__pagination {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.center-slider__dot {
  all: unset;
  width: 8px;
  height: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.center-slider__dot.is-active {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.95);
}
.center-slider__dot.is-active::before {
  background: rgba(255, 255, 255, 0.95);
}
.center-slider__controls {
  display: none;
}

.stats-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2.5rem 1rem 0;
  gap: 0.5rem;
}
.numeric {
  color: #fff;
  font-size: 25px;
  line-height: 1.35;
  margin-top: 1.625rem;
  font-family: "Asket Extended", sans-serif;
  font-weight: 900;
}
.increasing {
  font-family: "Asket Extended", sans-serif;
}
.stat-container {
  background-color: #000000;
  border: 1px solid #ffffff33;
  border-radius: 25px;
  padding: 1.5rem 1rem;
}
.cta-section {
  padding: 2.5rem 1rem 0;
}

.cta-container {
  display: flex;
  color: #ffffff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.cta-container .yellow-btn {
  margin-top: 0;
  width: 100%;
}
/* Video*/
.center-slider__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-card__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  padding: 0;
}

.video-card__overlay-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 999px;
  background: #ffffff33;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff33;
  background: url("/assets/img/video-play.svg") no-repeat center / cover;
}

.video-card.is-playing .video-card__overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-card__overlay {
  opacity: 1;
  transition: opacity 180ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*HOW WE WORK*/

.hww-section {
  padding: 5rem 1rem 0;
}
.hww-container {
  background: black;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #ffffff33;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hww-points-container {
  margin-top: 2.5rem;
}
.hww-point {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  color: #ffffff;
  padding: 1rem 0;
}
.hww-point-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hww-num {
  width: 40px;
  height: 40px;
  background: #222222;
  border: 1px solid #414141;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
}
.hww-point-heading {
  font-size: 1.5rem;
  line-height: 1.4;
}

.hww-container .yellow-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.desktop-hww-img {
  display: none;
}

.hww-subcontainer .yellow-btn {
  margin-top: 2.125rem;
}
/*REVIEWS*/

.video-review-comment {
  position: absolute;
  bottom: 2rem;
  background: #000000b2;
  color: #ffffff;
  left: 0.5rem;
  right: 0.5rem;
  text-align: left;
  padding: 10px;
  font-size: 1.125rem;
  line-height: 1.4;
  border-radius: 12px;
}

.video-review-comment::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 27px;
  background: url("/assets/img/review-comment-decor.svg") no-repeat center /
    contain;
  top: -21px;
  left: 20px;
}

/*FAQ*/
.faq-section {
  padding: 5rem 1rem 0;
}
.faq-list {
  margin-top: 2.5rem;
}
.faq-item-container {
  border-top: 1px solid #ffffff33;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1.4;
  padding-top: 20px;
}
.faq-question > :first-child {
  max-width: 295px;
}

.faq-question .img-container {
  width: 24px;
  height: 24px;
}
.faq-question .img-container img {
  transition: transform 320ms ease;
}

.faq-answer {
  line-height: 1.4;
  font-size: 18px;
  height: 0;
  transform: translateY(-6px);
  overflow: hidden;
  opacity: 0;
  transition:
    height 320ms ease,
    opacity 320ms ease,
    transform 320ms ease;
  will-change: max-height, opacity, transform;
  padding-bottom: 20px;
  color: #ffffff99;
}

.faq-item-container.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item-container.is-open .faq-question img {
  transform: rotate(180deg);
}

.faq-list > :first-child {
  border-top: 0;
}

.faq-list > :first-child .faq-question {
  padding-top: 0;
}

.additional-info {
  margin-top: 2.5rem;
}

.additional-info p {
  color: #ffffff;
  text-align: center;
  font-size: 0.875rem;
}

.additional-info.mob-hide {
  display: none;
}

.additional-info .yellow-btn {
  width: 100%;
}

/*ADDRESS*/

.map-section {
  padding: 5rem 1rem;
}
.map-container {
  background: #222222;
  border-radius: 1.5rem;
  border: 1px solid #383737;
}
.map-container img {
  width: 100%;
  border-radius: 1.5rem;
}

.address-info {
  padding: 1.625rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
}

.address-title {
  text-transform: uppercase;

  line-height: 1.2;
  font-family: "Asket Extended", sans-serif;
  font-size: 0.875rem;
}
.address {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 300;
  color: white;
  text-decoration: none;
}
.address-clarification {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #21dde8;
}

.desktop-location {
  display: none;
}

/*FOOTER*/
footer {
  padding: 2.5rem 1rem 2.5rem;
  background: linear-gradient(to bottom, #24b2bb05 0%, #10515566 100%);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-container > :first-child {
  margin: 0 auto 3.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid #ffffff33;
}
.footer-contact-info > :first-child {
  text-transform: uppercase;
  color: #ffffff30;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Asket Extended", sans-serif;
  margin-bottom: 0.5rem;
}
.footer-contact-info a {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  text-decoration: none;
  font-family: "Asket Extended", sans-serif;
  margin-bottom: 0.75rem;
}
.footer-social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.footer-container .body-3 {
  text-align: center;
  margin-top: 0.5rem;
}

/*MARQUEE*/
.marquee {
  padding: 30px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marquee__viewport {
  overflow: hidden;
  width: 100%;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee__content {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  padding-right: 14px;
}

.marquee__item {
  font-family: "Asket Extended", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.4;
  color: #ffffff;
}

.marquee__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #24b2bb;
}
.marquee__viewport {
  position: relative;
}
.marquee__viewport::before,
.marquee__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.marquee__viewport::before {
  left: 0;
  background: linear-gradient(to right, #151515, rgba(21, 21, 21, 0));
}

.marquee__viewport::after {
  right: 0;
  background: linear-gradient(to left, #151515, rgba(21, 21, 21, 0));
}

.marquee .yellow-btn {
  width: 95%;
  margin-top: 2.25rem;
}

/*Mini-aos*/
[data-anim] {
  opacity: 1;
  transform: none;
}

[data-anim].anim-init {
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1),
    opacity 700ms ease;
  will-change: transform, opacity;
}

[data-anim].anim-init.is-animated {
  opacity: 1;
  transform: none;
}

[data-anim="fade"].anim-init {
  transform: none;
}

[data-anim="fade-up"].anim-init {
  transform: translateY(40px);
}

[data-anim="fade-down"].anim-init {
  transform: translateY(-40px);
}

[data-anim="fade-left"].anim-init {
  transform: translateX(40px);
}

[data-anim="fade-right"].anim-init {
  transform: translateX(-40px);
}

[data-anim="zoom-in"].anim-init {
  transform: scale(0.85);
}

[data-anim="zoom-out"].anim-init {
  transform: scale(1.15);
}

[data-anim="flip-up"].anim-init {
  transform: perspective(800px) rotateX(20deg);
  transform-origin: bottom;
}

/*404 PAGE*/

.error-section {
  padding: 18rem 1rem 0;
}

.error-img {
  width: 100%;
  margin-bottom: 1rem;
}
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.error-container h1 {
  font-size: 1.125rem;
}
.error-container .body-3 {
  color: #ffffff80;
  text-align: center;
}

/*Policy*/

.policy-section {
  padding: 10rem 1rem 8rem;
}
.policy-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-radius: 1.5rem;
}
.policy-container h1 {
  max-width: 700px;
}
.policy-subheading {
  color: #ffffff80;
  font-size: 1.5rem;
  line-height: 1.4;
}
.policy-container h4 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.policy-container ul.body-2,
.policy-container .body-2 ul {
  margin: 0.5rem 0 1.25rem;
  padding-left: 0;
}

.policy-container ul.body-2 li,
.policy-container .body-2 ul li {
  list-style: none;
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffffcc;
  line-height: 1.7;
}

.policy-container ul.body-2 li::before,
.policy-container .body-2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  transform: translateY(-50%);
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.85;
}

.policy-container ul.body-2 ul,
.policy-container .body-2 ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding-left: 0;
}

.policy-container ul.body-2 li:last-child,
.policy-container .body-2 ul li:last-child {
  margin-bottom: 0;
}
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.policy-link {
  font-size: 0.875rem; /* small */
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.policy-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/*TOUCH*/
/* overlay only for the Fine Line card */
.style-container.fine-line-hint {
  position: relative;
}

.style-container.fine-line-hint .touch-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 5;
}

.style-container.fine-line-hint .touch-hint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 37px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
}

.style-container.fine-line-hint .touch-hint__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px;
}

.style-container.fine-line-hint .touch-hint__icon {
  width: 30px;
  height: 30px;
  transform: scale(1);
}

.style-container.fine-line-hint .touch-hint__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
}

.style-container.fine-line-hint.is-hint-visible .touch-hint {
  opacity: 1;
}
.style-container img {
  width: 205px;
  height: 251px;
}

@keyframes touchPulse2x {
  0% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.22);
  }
  36% {
    transform: scale(1);
  }
  54% {
    transform: scale(1.22);
  }
  72% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.style-container.fine-line-hint.is-hint-anim .touch-hint__icon {
  animation: touchPulse2x 4s ease-in-out forwards;
}

/* ––––––– ADAPTATION ––––––– */

@media screen and (min-width: 1024px) {
  /*GENERAL*/

  section,
  header,
  footer {
    display: flex;
    justify-content: center;
  }
  section > :first-child,
  header > :first-child,
  footer > :first-child {
    max-width: 1200px;
    width: 100%;
    display: flex;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3rem;
  }
  .body-1 {
    font-size: 1.375rem;
  }
  .body-2 {
    font-size: 1.25rem;
  }
  .body-3 {
    font-size: 1rem;
  }

  a.yellow-btn {
    width: fit-content;
  }

  /*HEADER ADAPT*/

  header {
    padding: 2rem 1.5rem 0;
  }
  .burger-btn,
  .mobile-menu {
    display: none;
  }
  .header-logo {
    width: 185px;
  }

  .desktop-nav {
    justify-content: space-between;
    align-items: center;
  }
  .desktop-nav .yellow-btn {
    margin-top: 0;
  }

  .desktop-navigation {
    display: flex;
    gap: 2.5rem;
  }

  .desktop-navigation * {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
  }

  /*HERO ADAPT*/
  .hero-text-container {
    margin: 16rem 0 10rem;
    max-width: 750px;
    background: transparent;
    padding: 2rem 0 0 1rem;
  }
  .hero-text {
    max-width: none;
  }
  .hero-text-container a.yellow-btn {
    margin-top: 3rem;
    width: fit-content;
  }
  .stars-block {
    justify-content: flex-start;
    margin-top: 2.5rem;
  }
  a.see-more {
    width: fit-content;
    margin-top: 0.75rem;
  }

  .images-container {
    width: auto;
    top: -3rem;
  }
  .images-left,
  .images-right {
    width: auto;
  }

  .images-left img,
  .images-right img,
  .images-left video {
    width: 250px;
    height: auto;
  }
  .images-right {
    margin-top: 5rem;
  }

  .hero-container {
    position: relative;
  }
  .hero-container:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 95px;
    bottom: 0;
    left: 0;
    background: linear-gradient(
      to top,
      rgb(21 21 21) 0%,
      rgb(21 21 21 / 90%) 25%,
      rgba(21, 21, 21, 0.75) 50%,
      rgba(21, 21, 21, 0.65) 75%,
      rgba(21, 21, 21, 0) 100%
    );
    z-index: 100;
  }
  /*WHY CHOOSE ADAPT*/

  .why-choose-decor-img {
    display: block;
  }
  .why-choose-container {
    justify-content: space-between;
    padding: 2.5rem;
  }
  .why-choose-subcontainer {
    max-width: 548px;
  }
  .why-choose-subcontainer .yellow-btn {
    width: fit-content;
  }
  .why-choose-heading {
    position: relative;
  }

  .why-choose-heading img {
    transform: rotate(-3deg);
    position: absolute;
    bottom: 0;
    width: 290px;
    right: 0;
  }
  .why-choose-heading h2 {
    text-align: left;
  }
  .why-choose-body {
    margin: 3.125rem 0 3rem;
  }

  /*STYLES ADAPT*/
  .styles-section {
    padding-top: 11.25rem;
  }
  .styles-container {
    flex-direction: column;
    text-align: center;
  }
  .styles-container .body-2 {
    max-width: 800px;
    margin: 0 auto;
  }
  .style-container-cta {
    padding: 5.8rem 1.5rem;
    min-height: 350px;
  }
  .style-container img {
    width: 205px;
    height: 350px;
  }

  .slider::after {
    display: none;
  }

  .slider__track {
    overflow: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;

    padding-right: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .slider__slide {
    width: auto;
    flex: initial;
    gap: 2.5rem;
  }

  .slider__pagination {
    display: none;
  }
  .style-container img {
    width: 100%;
  }

  .style-element-text {
    text-align: left;
  }
  .center-slider {
    max-width: 1200px;
  }

  .center-slider__viewport {
    overflow: hidden;
  }

  .center-slider__track {
    gap: 16px;
    padding: 12px 0;
  }

  .center-slider__track.is-dragging {
    cursor: grabbing;
  }

  .center-slider__slide {
    width: calc((100% - 3 * 16px) / 4);
    transform: none;
    opacity: 1;
    filter: none;
  }

  .center-slider__slide::after {
    display: none;
  }
  .center-slider {
    position: relative;
  }

  .center-slider__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 12px;
  }

  .center-slider__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    background: black;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    border: 1px solid #ffffff33;
  }

  .center-slider__btn:active {
    transform: translateY(1px);
  }

  .center-slider__btn:disabled {
    opacity: 0.35;
    cursor: default;
  }
  .center-slider__pagination {
    display: none;
  }

  .popup__content {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /*STUDIO ADAPT*/
  .studio-section {
    padding-top: 11.25rem;
  }
  .studio-container {
    flex-direction: column;
  }
  .studio-heading {
    text-align: center;
  }

  .studio-heading .body-2 {
    max-width: 800px;
    margin: 0 auto;
  }
  .studio-heading h2 {
    max-width: none;
  }
  .stats-main-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 2.5rem 0 0;
  }

  /*HOW WE WORK ADAPT*/
  .hww-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 2.5rem;
  }
  .hww-container img {
    display: block;
  }

  /*FAQ*/
  .additional-info {
    display: none;
  }
  .additional-info.mob-hide {
    display: block;
  }
  .additional-info.mob-hide p {
    text-align: left;
  }
  .additional-info .yellow-btn {
    width: fit-content;
  }
  .faq-list {
    margin-top: 0;
    width: 100%;
  }
  .faq-question > :first-child {
    max-width: 95%;
  }
  .faq-container > :first-child {
    margin-right: 1rem;
  }

  /*CTA*/

  .cta-container .yellow-btn {
    width: fit-content;
  }

  /*MAP*/
  .address-info {
    padding: 0;
    max-width: 440px;
  }
  .map-container {
    padding: 2.5rem;
    align-items: center;
    justify-content: space-between;
  }
  .map-container * {
    text-decoration: none !important;
  }
  .desktop-location {
    display: block;
    max-width: 650px;
  }
  .mobile-location {
    display: none;
  }

  /*Footer*/
  .footer-container {
    align-items: center;
  }

  .footer-container > :first-child {
    width: 565px;
  }
  .footer-contact-info {
    width: 100%;
  }

  /*Marquee*/

  .marquee {
    position: relative;
    margin-top: 2.5rem;
  }

  .marquee__viewport {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .marquee__track {
    position: relative;
    z-index: 1;
  }
  .marquee__item {
    font-size: 2rem;
  }
  .marquee .yellow-btn {
    width: fit-content;
  }

  /*Decor*/
  .decor-layer {
    margin: 0 auto;
  }
  .decor--1 {
    top: 150px;
    left: 40%;
    width: 200px;
  }
  .decor--1-1 {
    display: block;
    bottom: 70px;
    left: 10%;
    width: 200px;
    transform: rotate(90deg);
  }

  .decor--3 {
    left: 0;
    top: 100px;
  }
  .decor--4 {
    left: 0;
    top: 120px;
  }
  .decor--4-1 {
    display: block;
    right: 0;
    top: 20px;
  }
  .decor--5 {
    left: 0;
    top: 80px;
  }
  .decor--6 {
    left: 375px;
    top: 120px;
  }
  .decor--7 {
    right: 0;
    top: 0;
  }
  .decor--7-1 {
    display: block;
    left: 0;
    bottom: 0;
    transform: rotate(90deg);
  }

  /*404 PAGE*/

  .error-section {
    padding: 18rem 1rem 0;
  }

  .error-img {
    max-width: 475px;
  }
  .error-container h1 {
    font-size: 1.375rem;
  }
  .error-container .body-3 {
    color: #ffffff80;
    text-align: center;
  }

  /*Policy*/
  .policy-section {
    padding: 18rem 1rem 8rem;
  }
}
