@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  --gold: #fdf1b3;
  --gold-strong: #e09c0a;
  --bg: #0a0f2c;
  --card: rgba(20, 20, 40, 0.45);
  --muted: #cfcfcf;
  --radius: 14px;
}

@font-face {
  font-family: "CinzelRegular";
  src: url("../fonts/Cinzel_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Forum-Regular";
  src: url("../fonts/Forum-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "PlayfairDisplayItalic";
  src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf")
    format("truetype");
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll; /* fallback si scrollbar-gutter pas supporté */
}

a {
  text-decoration: none;
}

.to-top .to-top svg {
  filter: drop-shadow(0 0 4px rgba(245, 216, 107, 0.8))
    drop-shadow(0 0 12px rgba(245, 216, 107, 0.4));
}
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(245, 216, 107, 0.35);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(245, 216, 107, 0.18),
      transparent 60%
    ),
    rgba(10, 14, 30, 0.7);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 1200;
  box-shadow:
    0 0 14px rgba(245, 216, 107, 0.25),
    inset 0 0 0 1px rgba(255, 248, 220, 0.08);
}
.to-top:hover {
  transform: translateY(0) scale(1.06);
  box-shadow:
    0 0 22px rgba(245, 216, 107, 0.45),
    0 0 60px rgba(245, 216, 107, 0.2);
}

.to-top.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* блокировка скролла */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

body {
  min-height: 100vh;
  background-image: url("../images/asteria_background.webp");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
  color: #d1d1d1;
  font-family: Forum-Regular, sans-serif;
  font-style: normal;
  font-weight: normal;
  /* убираем ложный flex-центринг */
  align-items: unset;
  justify-content: unset;
  /* если хочешь общий центр текста — оставь, если нет, убери */
  text-align: center;

  /* Fond “fixe” fiable (sans background-attachment: fixed) */
  background: none;
  position: relative;
}

body::before {
  content: "";
  position: fixed; /* ça, c'est reconnu partout */
  inset: 0;
  z-index: -1;

  background-image: url("../images/asteria_background.webp");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;

  /* important : évite certains flous de compositing */
  transform: translateZ(0);
  will-change: transform;
}

body .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-inline: clamp(14px, 4vw, 20px);
}
body header .header__container {
  position: relative;
  font-size: 15px;
  font-family: "Poppins-Regular", sans-serif;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
body header .header__container .header_logo {
  width: 110px;
  flex: 0 0 auto;
}
body header .header__container .header_logo .header__logo-image {
  width: 100%;
}
body header .header__container .header_menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  width: auto;
  max-width: 700px;
  align-items: center;
  flex-wrap: wrap;
  font-family: "CinzelRegular";
  font-weight: 600;
  font-size: 16px;
}
body header .header__container .header_menu .header_menu__item {
  transition: transform 0.3s ease;
}
body
  header
  .header__container
  .header_menu
  .header_menu__item
  .header_menu__item-link {
  text-decoration: none;
  color: #d1d1d1;
  padding: 15px;
}
body header .header__container .header_menu .header_menu__item:hover {
  transform: scale(1.18);
  border-radius: 40px;
}
body header .header__container .header_right {
  display: flex;
  align-items: center;
  gap: 16px; /* расстояние между кнопкой и бургером */
}
body header .header__container .header_right .header_price-question {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  padding: 6px 15px;
  border-radius: 35px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(15, 20, 35, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
}
body
  header
  .header__container
  .header_right
  .header_price-question
  .header_price-question-icon
  .header_price-question-icon-image {
  width: 30px;
}
body
  header
  .header__container
  .header_right
  .header_price-question
  .header_price-question-text {
  text-decoration: none;
  color: #d1d1d1;
  font-family: "CinzelRegular";
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
}
body header .header__container .header_right .header_price-question:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}
body header .header__container .header_right .header__burger {
  order: 3;
  margin-left: auto; /* гарантирует, что бургер уйдет вправо */
  display: none;
  width: 44px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2002;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  padding: 6px;
  background: rgba(10, 14, 30, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.35s ease;
}
body header .header__container .header_right .header__burger span {
  width: 100%;
  height: 3px;
  border-radius: 4px;
  /* золотая линия как на созвездиях */
  background: linear-gradient(
    90deg,
    rgba(255, 248, 220, 0.95),
    rgba(245, 216, 107, 0.95),
    rgba(217, 161, 59, 0.95)
  );
  /* мягкое сияние на фоне */
  transition: 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  transform-origin: center;
}
body header .header__container .header_right .header__burger:hover {
  transform: translateY(-1px);
}
body
  header
  .header__container
  .header_right
  .header__burger.active
  span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
body
  header
  .header__container
  .header_right
  .header__burger.active
  span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
body
  header
  .header__container
  .header_right
  .header__burger.active
  span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}
body header .header__container .header_menu.is-mobile {
  position: fixed;
  inset: 0;
  z-index: 2000;
  /* базовый космос */
  background:
    radial-gradient(
      1200px 700px at 70% 20%,
      rgba(245, 216, 107, 0.06),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 20% 80%,
      rgba(120, 170, 255, 0.05),
      transparent 65%
    ),
    rgba(6, 9, 20, 0.94);
  backdrop-filter: blur(12px) saturate(1.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
  /* мягкая золотая рамка */
  box-shadow:
    inset 0 0 0 1px rgba(245, 216, 107, 0.14),
    inset 0 0 60px rgba(245, 216, 107, 0.06);
}
body header .header__container .header_menu.is-mobile.active {
  transform: translateX(0);
}
body header .header__container .header_menu.is-mobile::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(
      1px 1px at 10% 20%,
      rgba(255, 255, 255, 0.8),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 30% 80%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 70% 30%,
      rgba(255, 255, 255, 0.7),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 85% 60%,
      rgba(255, 255, 255, 0.5),
      transparent 60%
    ),
    radial-gradient(
      1px 1px at 50% 50%,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    );
  filter: blur(0.2px);
  animation: asteriaDust 18s linear infinite alternate;
}
@keyframes asteriaDust {
  from {
    transform: translateY(-2%) scale(1.02);
  }
  to {
    transform: translateY(2%) scale(1.04);
  }
}
body header .header__container .header_menu.is-mobile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(245, 216, 107, 0.05) 40deg,
    transparent 90deg,
    rgba(245, 216, 107, 0.04) 140deg,
    transparent 220deg
  );
  mix-blend-mode: screen;
  opacity: 0.35;
  animation: nebulaSpin 38s linear infinite;
}
@keyframes nebulaSpin {
  to {
    transform: rotate(360deg);
  }
}
body header .header__container {
  /* ===== ССЫЛКИ МЕНЮ ===== */
}
body header .header__container .header_menu.is-mobile .header_menu__item {
  position: relative;
}
body header .header__container .header_menu.is-mobile .header_menu__item-link {
  font-family: "CinzelRegular", serif;
  font-size: 30px;
  letter-spacing: 0.8px;
  color: rgba(255, 248, 220, 0.98);
  text-decoration: none;
  padding: 8px 18px;
  display: inline-block;
  text-shadow:
    0 0 8px rgba(245, 216, 107, 0.45),
    0 0 18px rgba(245, 216, 107, 0.25);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    text-shadow 0.35s ease;
}
body header .header__container {
  /* подсветка как “созвездие” */
}
body
  header
  .header__container
  .header_menu.is-mobile
  .header_menu__item-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 216, 107, 0.9),
    transparent
  );
  box-shadow: 0 0 10px rgba(245, 216, 107, 0.9);
  transition: width 0.35s ease;
  opacity: 0.9;
}
body
  header
  .header__container
  .header_menu.is-mobile
  .header_menu__item-link:hover {
  color: #fff3bf;
  transform: translateY(-1px) scale(1.08);
  text-shadow:
    0 0 10px rgba(255, 230, 150, 0.85),
    0 0 26px rgba(245, 216, 107, 0.55);
}
body
  header
  .header__container
  .header_menu.is-mobile
  .header_menu__item-link:hover::after {
  width: 120%;
}

main {
  padding-top: 125px;
}
main .main__container {
  position: relative;
  color: #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: start;
  padding-bottom: 10px;
}
main .main__container .main-description {
  width: 100%;
  text-align: center;
  max-width: 540px;
  font-family: "Forum-Regular", sans-serif;
}
main .main__container .main-description .main-description__title {
  font-family: "CinzelRegular", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  padding-bottom: 3px;
  color: var(--gold);
}
main .main__container .main-description .main-description__text-up {
  font-style: normal;
  font-weight: 600;
  font-size: 29px;
  padding-bottom: 45px;
}
main .main__container .main-description .main-description__text-down {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  padding-bottom: 45px;
  line-height: 22px;
}
main .main__container .main-description .main-description-buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 100%;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 15px;
}
main
  .main__container
  .main-description
  .main-description-buttons
  .main-description__buttons-service {
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 210px;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  padding: 10px 15px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  background: rgba(28, 33, 46, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
  font-family: "CinzelRegular";
  font-size: 16px;
  font-weight: 600;
}
main
  .main__container
  .main-description
  .main-description-buttons
  .main-description__buttons-contact {
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 210px;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  padding: 10px 15px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  background: rgba(15, 20, 35, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
  font-family: "CinzelRegular";
  font-size: 16px;
  font-weight: 600;
}
main
  .main__container
  .main-description
  .main-description-buttons
  .main-description__buttons-contact:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}
main
  .main__container
  .main-description
  .main-description-buttons
  .main-description__buttons-service:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}
main .main__container .main-image .main-image__image {
  max-width: 100%;
  width: min(520px, 45vw);
  height: auto;
}
main .main__container {
  /* === ✨ ГОРИЗОНТАЛЬНОЕ СВЕЧЕНИЕ === */
}
main .main__container .horizon-glow {
  position: absolute;
  bottom: 35%;
  background: radial-gradient(
    circle at center bottom,
    rgba(255, 230, 150, 0.4),
    rgba(20, 20, 50, 0) 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 3;
  animation: glowBreath 4s ease-in-out infinite;
  left: 68%;
  transform: none;
  width: min(520px, 55vw);
  height: clamp(110px, 14vw, 175px);
}
@keyframes glowPulse {
  0% {
    opacity: 0.6;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(12px);
  }
}
@keyframes glowBreath {
  0% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 0.7;
    filter: blur(25px);
  }
  50% {
    transform: translateX(-50%) scaleX(1.3) scaleY(1.2);
    opacity: 1;
    filter: blur(35px);
  }
  100% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 0.7;
    filter: blur(25px);
  }
}

.services {
  padding-top: 50px;
  padding-bottom: 40px;
}
.services .services__container .services__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
  padding-bottom: 10px;
}
.services .services__container .services__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.services .services__container .services__text {
  font-size: 22px;
  margin-top: 20px;
  padding-bottom: 50px;
  line-height: 30px;
}
@keyframes floatText {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* вверх */
  }
  100% {
    transform: translateY(0);
  }
}
.services .services__container .services__group {
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  row-gap: 100px;
  column-gap: 100px;
  justify-content: center;
  width: 100%;
}
.services .services__container .services__group .services__group-item {
  position: relative;
  width: 290px;
  height: 250px;
  text-align: start;
  vertical-align: center;
  padding: 40px 30px;
  align-items: center;
  justify-content: space-between;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  background: rgba(28, 33, 46, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-title {
  padding-bottom: 20px;
  font-size: 23px;
  text-align: center;
  color: var(--gold);
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-stars {
  display: flex;
  padding-bottom: 25px;
  text-align: center;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-stars
  .services__group-item-star-little {
  padding-top: 2px;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-stars
  .services__group-item-star-little
  .services__group-star-little-icon {
  width: 20px;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-stars
  .services__group-item-star {
  padding-left: 3px;
  padding-right: 3px;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-stars
  .services__group-item-star
  .services__group-star-icon {
  width: 40px;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-description {
  text-align: center;
  font-size: 20px;
  line-height: 22px;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-vitrine {
  position: absolute;
  bottom: -150px;
  left: -15%;
  transform: translateX(-50%);
  text-align: center;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-vitrine
  .services__group-woman-vitrine-icon {
  width: 285px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 230, 150, 0.3));
  transition: 0.6s ease;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-boutique {
  position: absolute;
  bottom: -145px;
  left: 100%;
  transform: translateX(-50%);
  text-align: center;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-boutique
  .services__group-woman-boutique-icon {
  width: 275px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 230, 150, 0.3));
  transition: 0.6s ease;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-optimisation {
  position: absolute;
  bottom: -85px;
  right: 40%;
  transform: translateX(-50%);
  text-align: center;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-optimisation
  .services__group-woman-optimisation-icon {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 230, 150, 0.3));
  transition: 0.6s ease;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-maintenance {
  position: absolute;
  bottom: -135px;
  left: 100%;
  transform: translateX(-50%);
  text-align: center;
}
.services
  .services__container
  .services__group
  .services__group-item
  .services__group-item-woman-maintenance
  .services__group-woman-maintenance-icon {
  width: 330px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 230, 150, 0.3));
  transition: 0.6s ease;
}
.services .services__container .services__group .services__group-item:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}

.about {
  padding-top: 10px;
}
.about .about__container {
  padding-bottom: 100px;
  position: relative;
}
.about .about__container .about__image {
  position: absolute;
  top: -348px;
  right: 0;
  left: 0;
  bottom: 0;
}
.about .about__container .about__image .about__image-img {
  width: 590px;
  position: relative;
}
.about .about__container .about__image .about__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
  top: 275px;
  right: -35px;
  left: 0;
  bottom: 0;
  position: absolute;
  font-size: 50px;
  padding-bottom: 40px;
  width: 100%;
}
.about .about__container .about__image .about__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.about .about__container .about__description {
  margin-top: 400px;
  z-index: 0;
  padding: 0 60px 60px;
  font-size: 20px;
  align-items: center;
  text-align: center;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(15, 20, 35, 0.4); /* 👈 полупрозрачный фон */
  line-height: 22px;
  text-align: start;
}
.about .about__container .about__description .about__description-padding-top {
  height: 60px;
}
.about .about__container .about__description .about__description-1 {
  padding-bottom: 20px;
  backdrop-filter: blur(1px);
}
.about .about__container .about__description .about__description-2 {
  padding-bottom: 20px;
  backdrop-filter: blur(1px);
}
.about .about__container .about__description .about__description-3 {
  text-align: center;
  padding-bottom: 20px;
  backdrop-filter: blur(1px);
  align-items: center;
  vertical-align: center;
  justify-items: center;
  text-align: start;
}
.about
  .about__container
  .about__description
  .about__description-3
  .about__description-3-group {
  display: flex;
  align-items: center;
  vertical-align: center;
  text-align: start;
  width: 100%;
}
.about .about__container .about__description .about__description-4 {
  backdrop-filter: blur(1px);
}
.about .about__container .about__description:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
}

.portfolio {
  padding-top: 50px;
  padding-bottom: 140px;
}
.portfolio .portfolio__container {
  padding: 0px 15px 0 15px;
}
.portfolio .portfolio__container .portfolio__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
  padding-bottom: 10px;
}
.portfolio .portfolio__container .portfolio__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.portfolio .portfolio__container .portfolio__description {
  font-size: 22px;
  margin-top: 20px;
  padding-bottom: 30px;
  line-height: 30px;
}
.portfolio .portfolio__container .portfolio__slider-wrapper {
  position: relative;
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .portfolio__cards
  .swiper-wrapper
  .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 20, 35, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
  cursor: grab;
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .portfolio__cards
  .swiper-wrapper
  .portfolio__cards-item
  .portfolio__cards-items-image
  .portfolio__cards-items-image-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  border: 0.2px solid #fdf1b3;
  margin-top: 20px;
}
.portfolio__cards-items-image img:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
}
.portfolio .portfolio__container .portfolio__slider-wrapper .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.portfolio .portfolio__container .portfolio__slider-wrapper .mySwiper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .mySwiper
  .swiper-pagination {
  position: static; /* отключаем абсолютное позиционирование */
  margin-top: 25px; /* отступ вниз от слайдера */
  text-align: center;
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .mySwiper
  .swiper-pagination-bullet {
  background-color: rgba(253, 241, 179, 0.4); /* мягкий бледно-золотой */
  opacity: 1; /* чтобы цвет был полностью виден */
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .mySwiper
  .swiper-pagination-bullet-active {
  background-color: rgb(245, 217, 109);
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-prev-outer,
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-next-outer {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  z-index: 10;
  cursor: pointer;
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-prev-outer:hover,
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-next-outer:hover {
  color: #fff8dc;
  filter: drop-shadow(0 0 6px #fdf1b3);
  transform: translateY(-50%) scale(1.1);
  transition: all 0.3s ease;
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-prev-outer {
  left: -60px; /* вне слайдера слева */
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-next-outer {
  right: -60px; /* вне слайдера справа */
}
.portfolio .portfolio__container .portfolio__slider-wrapper {
  /* Можно вставить SVG в CSS через background или прямо внутрь div */
}
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-prev-outer::after,
.portfolio
  .portfolio__container
  .portfolio__slider-wrapper
  .swiper-button-next-outer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.advantages {
  padding-bottom: 100px;
  justify-items: center;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.advantages .advantages__container {
  width: 80%;
  place-items: center;
}
.advantages .advantages__container .advantages__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
}
.advantages .advantages__container .advantages__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.advantages .advantages__container .advantages__group {
  display: flex;
  align-items: center;
  vertical-align: center;
  justify-content: center;
}
.advantages
  .advantages__container
  .advantages__group
  .advantages__advantage-description
  .advantages__advantage {
  display: flex;
  padding-bottom: 15px;
  align-items: center;
  font-size: 19px;
  max-width: 100%;
}
.advantages
  .advantages__container
  .advantages__group
  .advantages__advantage-description
  .advantages__advantage
  .advantages__advantage-img {
  width: 30px;
}
.advantages
  .advantages__container
  .advantages__group
  .advantages__advantage-description
  .advantages__advantage
  .advantages__advantage-text {
  font-size: 20px;
  text-align: justify;
}
.advantages
  .advantages__container
  .advantages__group
  .advantages__advantage-image {
  width: 450px; /* Размер можно подогнать */
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
}
.advantages
  .advantages__container
  .advantages__group
  .advantages__advantage-image
  .advantages__advantage-image-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen; /* красиво ложится на звёздный фон */
  will-change: transform, filter;
  animation:
    moon-rotate 15s linear infinite,
    moon-glow 15s ease-in-out infinite,
    moon-tilt 15s ease-in-out infinite;
  filter: drop-shadow(0 0 36px rgba(205, 168, 90, 0.35)) brightness(1.05);
  transform-origin: 50% 50%;
}
.advantages .advantages__container .advantages__expression {
  color: var(--gold);
  font-size: 23px;
  font-family: "PlayfairDisplayItalic", sans-serif;
  /* ключевые фиксы */
  /* на всякий случай, чтобы никогда не вылез */
  display: flex;
  text-align: end;
  place-self: end;
}

.pricing {
  padding-top: 50px;
  padding-bottom: 100px;
}
.pricing .pricing__container .pricing__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
  padding-bottom: 10px;
  text-shadow: 0 0 10px rgba(240, 200, 120, 0.08);
  font-weight: bold;
}
.pricing .pricing__container .pricing__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.pricing .pricing__container .pricing__description {
  font-size: 22px;
  margin-top: 20px;
  padding-bottom: 50px;
  line-height: 30px;
}
.pricing .pricing__container .pricing__price-card-group {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  row-gap: 50px;
  flex-wrap: wrap;
}
.pricing .pricing__container .pricing__price-card-group .pricing__price-card {
  width: 279px;
  height: 380px;
  padding: 30px 30px 60px 30px;
  align-items: center;
  font-size: 20px;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(15, 20, 35, 0.4);
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-type {
  border: 0.2px solid #fdf1b3;
  border-radius: 35px;
  font-size: 15px;
  display: inline-block;
  padding: 4px 9px;
  margin-bottom: 20px;
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-name {
  padding-bottom: 20px;
  font-size: 25px;
  text-align: center;
  color: var(--gold);
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-price {
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-family: "CinzelRegular";
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-text {
  font-size: 19px;
  margin-bottom: 20px;
  text-align: start;
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-text
  .pricing__price-card-text-group {
  display: flex;
  vertical-align: center;
  align-items: center;
  padding-bottom: 10px;
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-text
  .pricing__price-card-text-group
  .pricing__price-card-text-icon
  .pricing__price-card-text-icon-img {
  width: 35px;
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-button {
  text-align: center;
  justify-self: center;
  width: 200px;
  padding: 10px 15px;
  align-items: center;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(15, 20, 35, 0.4);
  font-family: "CinzelRegular";
  font-size: 16px;
  font-weight: 600;
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card
  .pricing__price-card-button:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}
.pricing
  .pricing__container
  .pricing__price-card-group
  .pricing__price-card:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}

.faq {
  padding-top: 50px;
  padding-bottom: 100px;
}
.faq .faq__container .faq__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
  padding-bottom: 40px;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(240, 200, 120, 0.08);
}
.faq .faq__container .faq__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.faq .faq__container .accordion {
  display: grid;
  gap: 16px;
}
.faq .faq__container .accordion .accordion__item {
  border-radius: var(--radius);
  overflow: visible;
  border: 1px solid rgba(253, 241, 179, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.03)
  );
  backdrop-filter: blur(6px);
  transition:
    box-shadow 0.32s ease,
    transform 0.28s ease;
  position: relative;
}
.faq .faq__container .accordion .accordion__item .accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  font-family: "Poppins-Regular", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
  position: relative;
  /* Вопрос (левая часть) */
}
.faq
  .faq__container
  .accordion
  .accordion__item
  .accordion__btn
  .accordion__question {
  display: block;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
  font-family: "Forum-Regular";
}
.faq
  .faq__container
  .accordion
  .accordion__item
  .accordion__btn
  .accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--gold);
  font-size: 18px;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}
.faq .faq__container .accordion .accordion__item {
  /* Панель с ответом (анимация высоты) */
}
.faq .faq__container .accordion .accordion__item .accordion__panel {
  padding: 0 22px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.2, 0.9, 0.2, 1),
    padding 0.35s ease;
  text-align: start;
}
.faq .faq__container .accordion {
  /* Состояние открытой карточки */
}
.faq .faq__container .accordion .accordion__item.open {
  box-shadow:
    0 0 2px var(--gold-strong),
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: translateY(-4px);
}
.faq .faq__container .accordion .accordion__item.open .accordion__icon {
  transform: rotate(180deg);
  background: rgba(253, 241, 179, 0.06);
}
.faq .faq__container .accordion {
  /* Когда открыта — даём отступы панели */
}
.faq .faq__container .accordion .accordion__item.open .accordion__panel {
  padding: 16px 22px 24px 22px;
}

.contact {
  padding-top: 50px;
  padding-bottom: 100px;
}
.contact .contact__container .contact__title {
  color: var(--gold);
  font-style: normal;
  font-size: 40px;
  padding-bottom: 10px;
}
.contact .contact__container .contact__title.float-text {
  display: inline-block;
  animation: floatText 4s ease-in-out infinite;
}
.contact .contact__container .contact__description {
  font-size: 22px;
  margin-top: 20px;
  padding-bottom: 50px;
  line-height: 30px;
}
.contact .contact__container .contact__form-details-text {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 23px;
  font-family: "PlayfairDisplayItalic", sans-serif;
  display: flex;
  text-align: end;
  place-self: end;
}
.contact .contact__container .contact__form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact__container .contact__form .contact__form-details-group {
  width: 450px;
  margin-right: 100px;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.contact__form-details-item label {
  font-weight: 600;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-item
  .form-input {
  width: 100%;
  background: rgba(28, 33, 46, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  padding: 12px 7px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  box-sizing: border-box;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-item
  .form-input-msg {
  padding: 12px 7px;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-item
  .form-label {
  padding-bottom: 10px;
  font-size: 18px;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 100%;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 15px;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-button
  .contact__form-details-button-btn {
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 210px;
  color: #d1d1d1;
  border: 0.2px solid #fdf1b3;
  padding: 10px 7px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  background: rgba(28, 33, 46, 0.4); /* 👈 полупрозрачный фон */
  backdrop-filter: blur(1px);
  font-family: "CinzelRegular";
  font-size: 16px;
  font-weight: 600;
}
.contact
  .contact__container
  .contact__form
  .contact__form-details-group
  .contact__form-details-button-btn:hover {
  box-shadow:
    0 0 2px #e09c0a,
    0 0 13px #614f12,
    0 0 60px #423407;
  transform: scale(1.05);
}
.contact .contact__container .contact__form .contact__form-image {
  width: 380px; /* подгони под макет */
  aspect-ratio: 1/1;
  position: relative;
  overflow: visible;
  pointer-events: none; /* клики проходят к форме */
}
.contact
  .contact__container
  .contact__form
  .contact__form-image
  .contact__form-image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform, filter;
  animation:
    moon-rotate 15s linear infinite,
    moon-glow 15s ease-in-out infinite,
    moon-tilt 15s ease-in-out infinite;
  filter: drop-shadow(0 0 36px rgba(205, 168, 90, 0.35)) brightness(1.05);
}

footer {
  padding-bottom: 10px;
}
footer .footer__rights {
  padding-bottom: 5px;
}
footer .footer__politics {
  padding-bottom: 5px;
}
footer .footer__politics .footer__politics_mentions {
  text-decoration: none;
  color: #d1d1d1;
}
footer .footer__politics .footer__politics_confidentiality {
  text-decoration: none;
  color: #d1d1d1;
}
footer .footer__socials .footer__socials-linkedin {
  text-decoration: none;
  color: #d1d1d1;
}
footer .footer__socials .footer__socials-instagram {
  text-decoration: none;
  color: #d1d1d1;
}

/* ===============================
   FOOTER BLUR (match header)
   =============================== */
.footer.footer--blur {
  position: relative;
  padding: 28px 0 18px;
  background: rgba(10, 14, 30, 0.55);
  backdrop-filter: blur(12px);
  border-top-color: rgba(245, 216, 107, 0.15);
}

.footer.footer--blur::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(245, 216, 107, 0),
    rgba(245, 216, 107, 0.35),
    rgba(245, 216, 107, 0)
  );
  opacity: 0.9;
  pointer-events: none;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer__logo img {
  width: 110px;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social,
.footer__link {
  text-decoration: none;
  color: #d1d1d1;
  font-size: 16px;
  transition: 0.25s;
}

.footer__social:hover,
.footer__link:hover {
  color: rgba(245, 216, 107, 0.95);
  text-shadow: 0 0 12px rgba(245, 216, 107, 0.18);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
}

.footer__title {
  font-family: "CinzelRegular";
  font-size: 16px;
  letter-spacing: 0.6px;
  color: var(--gold);
  font-weight: 600;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__text {
  font-size: 16px;
  color: rgba(209, 209, 209, 0.75);
}

.footer__bottom {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(245, 216, 107, 0.1);
}

.footer__rights {
  font-size: 13px;
  color: rgba(209, 209, 209, 0.7);
}

/* ✨ лёгкое мерцание */
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.09;
  }
}
/* === 🌠 ПАДАЮЩАЯ ЗВЕЗДА === */
.shooting-star {
  position: fixed;
  top: -10px;
  left: 80%;
  width: 2px;
  height: 80px;
  background: linear-gradient(
    45deg,
    rgba(222, 185, 72, 0.9),
    rgba(255, 230, 150, 0.9)
  );
  transform: rotate(45deg);
  opacity: 0;
  animation: shooting 10s ease-in-out infinite;
}

.shooting-star:nth-child(2) {
  left: 60%;
  animation-delay: 3s;
}

.shooting-star:nth-child(3) {
  left: 30%;
  animation-delay: 7s;
}

.shooting-star:nth-child(4) {
  left: 10%;
  animation-delay: 10s;
}

@keyframes shooting {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(45deg);
  }
  5% {
    opacity: 1;
  }
  15% {
    transform: translate(-400px, 400px) rotate(45deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* === ☄️ КОМЕТА === */
.comet {
  position: fixed;
  top: 90%;
  left: -300px; /* старт за левым краем */
  width: 250px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 230, 150, 0.9),
    rgba(255, 180, 50, 0)
  );
  border-radius: 50%;
  filter: blur(2px) drop-shadow(0 0 10px rgba(255, 210, 100, 0.6));
  opacity: 0;
  transform: rotate(30deg); /* угол полёта */
  animation: cometFly 45s linear infinite;
  z-index: 2;
}

/* ✨ хвост с лёгким мерцанием */
.comet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 250, 200, 0.9),
    rgba(255, 200, 80, 0)
  );
  filter: blur(4px);
  opacity: 0.8;
  animation: tailSparkle 1.5s ease-in-out infinite alternate;
}

/* 🌠 движение вдоль угла (диагональ, под 30°) */
@keyframes cometFly {
  0% {
    transform: translate(0, 0) rotate(150deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    transform: translate(1800px, -1000px) rotate(150deg); /* движение по диагонали вдоль угла */
    opacity: 0.9;
  }
  100% {
    transform: translate(3600px, -2000px) rotate(150deg);
    opacity: 0;
  }
}
/* ✨ эффект живого хвоста */
@keyframes tailSparkle {
  0% {
    opacity: 0.7;
    filter: blur(4px) drop-shadow(0 0 6px rgba(255, 230, 150, 0.8));
  }
  100% {
    opacity: 1;
    filter: blur(2px) drop-shadow(0 0 10px rgb(255, 250, 200));
  }
}
/* === 🌫️ ТУМАН / СИЯНИЕ МЛЕЧНОГО ПУТИ === */
.milkyway {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(200, 200, 255, 0.05) 30%,
      rgba(0, 0, 40, 0) 70%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(180, 180, 255, 0.03) 25%,
      rgba(0, 0, 0, 0) 80%
    );
  mix-blend-mode: screen;
  filter: blur(60px);
  opacity: 0.3;
  animation: drift 120s linear infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* 🌬️ Плавное движение тумана */
@keyframes drift {
  from {
    transform: translate(-50px, -30px) scale(1.05);
  }
  to {
    transform: translate(50px, 30px) scale(1.1);
  }
}
/* Чтобы слои были в правильном порядке */
body,
.shooting-star,
.comet {
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
}

/* === 🌌 ПУЛЬСИРУЮЩИЕ ОБЛАКА СВЕТА === */
.light-cloud {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Несколько слоёв облаков */
.light-cloud::before,
.light-cloud::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(180, 200, 255, 0.04) 25%,
    rgba(0, 0, 40, 0) 80%
  );
  filter: blur(80px);
  opacity: 0.15;
  animation: cloudPulse 40s ease-in-out infinite alternate;
}

.light-cloud::after {
  background: radial-gradient(
    circle at 70% 60%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(180, 200, 255, 0.03) 30%,
    rgba(0, 0, 40, 0) 80%
  );
  animation-delay: 20s;
}

/* ✨ Плавное “дыхание” света */
@keyframes cloudPulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.05) translate(20px, 20px);
    opacity: 0.15;
  }
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.1;
  }
}
/* Картинка: прозрачный PNG поверх твоего звездного фона */
/* Вращение */
@keyframes galaxy-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moon-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
/* Лёгкое покачивание */
@keyframes moon-tilt {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  50% {
    transform: rotate(20deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
/* adaptive.scss — версия БЕЗ миксинов */
/* =========================
   1) LAPTOP / small desktop
   <= 1280px
   ========================= */
@media (max-width: 1280px) {
  body .container {
    max-width: 1100px;
  }
  body header {
    padding: 30px 0 22px;
  }
  body header .header__container {
    font-size: 14px;
    width: auto;
  }
  body header .header__container .header_menu {
    width: auto;
    gap: 6px;
  }
  body
    header
    .header__container
    .header_menu
    .header_menu__item
    .header_menu__item-link {
    padding: 10px 8px;
  }
  body main .main__container {
    gap: 18px;
  }
  body main .main__container .main-description {
    max-width: 520px;
  }
  body main .main__container .main-description .main-description__title {
    font-size: 46px;
  }
  body main .main__container .main-description .main-description__text-up {
    font-size: 25px;
    padding-bottom: 30px;
  }
  body main .main__container .main-description .main-description__text-down {
    padding-bottom: 32px;
  }
  body main .main__container .main-description .main-description-buttons {
    gap: 10px;
  }
  body
    main
    .main__container
    .main-description
    .main-description-buttons
    .main-description__buttons-service,
  body
    main
    .main__container
    .main-description
    .main-description-buttons
    .main-description__buttons-contact {
    width: 190px;
  }
  body main .main__container .main-image .main-image__image {
    width: 520px;
  }
  body main .main__container .horizon-glow {
    /* оставил пустым, как у тебя */
  }
  body .portfolio .portfolio__container .portfolio__slider-wrapper {
    width: 90%;
    justify-self: center;
  }
  body .advantages .advantages__container {
    width: 100%;
  }
  body .advantages .advantages__advantage-image {
    width: 380px;
  }
}
/* =========================
   2) TABLET landscape
   <= 1024px
   ========================= */
@media (max-width: 1024px) {
  body .container {
    max-width: 980px;
  }
  body header .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }
  body header .header__container .header_logo {
    order: 1;
  }
  body header .header__container .header_menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    display: none !important;
  }
  body
    header
    .header__container
    .header_menu
    .header_menu__item
    .header_menu__item-link {
    font-size: 20px;
    padding: 10px 6px;
    white-space: nowrap;
  }
  body header .header__container .header_menu.is-mobile {
    position: fixed !important;
    display: flex !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2000 !important;
  }
  body header .header__container .header_right {
    display: flex;
    margin-left: auto; /* гарантирует, что блок уходит вправо */
    gap: 12px;
    order: 2;
  }
  body header .header__container .header_right .header_price-question {
    padding: 6px 14px;
  }
  body header .header__container .header_right .header__burger {
    display: flex !important;
  }
  body main .main__container {
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 40px 0;
    position: relative;
  }
  body main .main__container .main-description {
    max-width: 760px;
    text-align: center;
  }
  body main .main__container .main-description .main-description__title {
    font-size: 44px;
  }
  body main .main__container .main-description .main-description__text-up {
    font-size: 24px;
  }
  body main .main__container .main-description .main-description-buttons {
    justify-content: center;
    gap: 14px;
  }
  body
    main
    .main__container
    .main-description
    .main-description-buttons
    .main-description__buttons-service,
  body
    main
    .main__container
    .main-description
    .main-description-buttons
    .main-description__buttons-contact {
    width: 220px;
  }
  body main .main__container .main-image {
    margin-top: 10px;
  }
  body main .main__container .main-image .main-image__image {
    max-width: 480px;
  }
  body main .main__container .horizon-glow {
    left: 42%;
    transform: translateX(-50%);
    width: 40%;
    top: 57%;
  }
  body .services .services__container .services__group {
    column-gap: 50px;
    row-gap: 190px;
    justify-content: center;
    flex-flow: column;
  }
  body .services .services__container .services__group .services__group-item {
    width: 420px;
    height: 325px;
    box-sizing: border-box;
  }
  body .about .about__container {
    padding-bottom: 60px;
    margin-top: 300px;
  }
  body .about .about__container .about__image {
    margin-top: 10px;
    top: -258px;
  }
  body .about .about__container .about__image .about__image-img {
    width: 420px;
  }
  body .about .about__container .about__image .about__title {
    margin-top: 10px;
    font-size: 38px;
    top: 180px;
  }
  body .about .about__container .about__description {
    border-radius: 26px;
    padding: 0 40px 40px;
  }
  body
    .about
    .about__container
    .about__description
    .about__description-padding-top {
    height: 40px;
  }
  body
    .about
    .about__container
    .about__description
    .about__description-3
    .about__description-3-group {
    gap: 10px;
    text-align: left;
    align-items: flex-start;
  }
  body .advantages .advantages__container {
    width: 100%;
  }
  body .advantages .advantages__container .advantages__group {
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }
  body
    .advantages
    .advantages__container
    .advantages__group
    .advantages__advantage-description
    .advantages__advantage {
    justify-content: center;
    text-align: left;
    gap: 10px;
  }
  body
    .advantages
    .advantages__container
    .advantages__group
    .advantages__advantage-image {
    width: 320px;
  }
  body .advantages .advantages__container .advantages__expression {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 10px;
  }
  body .contact .contact__container .contact__form {
    flex-direction: column;
    gap: 26px;
  }
  body
    .contact
    .contact__container
    .contact__form
    .contact__form-details-group {
    width: 100%;
    max-width: 560px;
    margin-right: 0;
  }
  body .contact .contact__container .contact__form .contact__form-image {
    width: 300px;
  }
}
/* =========================
   3) TABLET portrait / big phones
   <= 900px
   ========================= */
@media (max-width: 900px) {
  body header .header__container .header_logo {
    width: 90px;
  }
  body header .header__container .header_menu {
    gap: 4px 10px;
  }
  body header .header__container .header_menu .header_menu__item-link {
    font-size: 13px;
  }
  body header .header__container .header_price-question {
    width: 100%;
    justify-content: center;
  }
  body main .main__container .main-description .main-description__title {
    font-size: 40px;
  }
  body main .main__container .main-description .main-description__text-up {
    font-size: 22px;
  }
  body main .main__container .main-image .main-image__image {
    max-width: 420px;
  }
  body .services .services__container .services__group {
    row-gap: 150px;
    column-gap: 50px;
    justify-content: center;
    flex-flow: column;
  }
  body .services .services__container .services__group .services__group-item {
    width: 350px;
    height: 300px;
  }
  body
    .services
    .services__container
    .services__group
    .services__group-item
    .services__group-item-woman-vitrine {
    left: -30%;
  }
  body
    .services
    .services__container
    .services__group
    .services__group-item
    .services__group-item-woman-boutique {
    left: 115%;
  }
  body
    .services
    .services__container
    .services__group
    .services__group-item
    .services__group-item-woman-optimisation {
    left: -15%;
  }
  body
    .services
    .services__container
    .services__group
    .services__group-item
    .services__group-item-woman-maintenance {
    left: 100%;
  }
  body
    .portfolio
    .portfolio__container
    .portfolio__slider-wrapper
    .swiper-button-prev-outer,
  body
    .portfolio
    .portfolio__container
    .portfolio__slider-wrapper
    .swiper-button-next-outer {
    width: 44px;
    height: 44px;
    top: 50%;
  }
  body
    .portfolio
    .portfolio__container
    .portfolio__slider-wrapper
    .swiper-button-prev-outer {
    left: 0;
  }
  body
    .portfolio
    .portfolio__container
    .portfolio__slider-wrapper
    .swiper-button-next-outer {
    right: 0;
  }
  body .pricing .pricing__container .pricing__price-card-group {
    flex-direction: column;
    align-items: center;
  }
  body
    .pricing
    .pricing__container
    .pricing__price-card-group
    .pricing__price-card {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
}
/* =========================
   4) PHONE large
   <= 720px
   ========================= */
@media (max-width: 720px) {
  body header {
    padding: 22px 0 16px;
  }
  body header .header__container {
    gap: 10px;
  }
  body header .header__container .header_menu {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  body header .header__container .header_menu .header_menu__item-link {
    padding: 8px 6px;
    font-size: 14px;
  }
  body main .main__container {
    padding-bottom: 30px;
  }
  body main .main__container .main-description .main-description__title {
    font-size: 36px;
  }
  body main .main__container .main-description .main-description__text-up {
    font-size: 28px;
    padding-bottom: 20px;
  }
  body main .main__container .main-description .main-description-buttons {
    flex-direction: column;
    gap: 10px;
  }
  body
    main
    .main__container
    .main-description
    .main-description-buttons
    .main-description__buttons-service,
  body
    main
    .main__container
    .main-description
    .main-description-buttons
    .main-description__buttons-contact {
    width: 100%;
    max-width: 250px;
    font-size: 15px;
  }
  body main .main__container .main-image .main-image__image {
    max-width: 340px;
  }
  body .services .services__container .services__group .services__group-item {
    width: 350px;
    height: 280px;
  }
  body .about .about__container .about__image .about__title {
    font-size: 32px;
  }
  body .advantages .advantages__container .advantages__advantage {
    align-items: flex-start;
  }
  body .advantages .advantages__container .advantages__advantage-image {
    width: 240px;
  }
  body
    .contact
    .contact__container
    .contact__form-details-group
    .contact__form-details-item
    .form-label {
    font-size: 16px;
  }
  body .contact .contact__container .contact__form-image {
    width: 240px;
  }
}
/* =========================
   5) PHONE
   <= 560px
   ========================= */
@media (max-width: 560px) {
  body .header_menu.is-mobile .header_menu__item-link {
    font-size: 26px;
  }
  body header .site-header .header__container .header_logo {
    width: 70px;
  }
  body header .site-header .header__container .header_menu {
    width: auto;
    max-width: 400px;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
  }
  body main .main__container .main-description .main-description__title {
    font-size: 30px;
  }
  body main .main__container .main-description .main-description__text-up {
    font-size: 24px;
  }
  body main .main__container .main-image .main-image__image {
    max-width: 340px;
  }
  body .services .services__container .services__group .services__group-item {
    padding: 28px 20px;
  }
  body
    .pricing
    .pricing__container
    .pricing__price-card-group
    .pricing__price-card {
    padding: 24px 22px 40px;
    max-width: 325px;
  }
  body footer {
    font-size: 14px;
  }
  body footer .footer__politics {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* ===============================
   FOOTER – TABLETTE
   =============================== */
@media (max-width: 1024px) {
  .footer.footer--blur {
    padding: 26px 0 20px;
  }
}

/* ===============================
   FOOTER – MOBILE (STACK SECTIONS)
   =============================== */
@media (max-width: 640px) {
  .footer__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .footer__col {
    width: 100%;
  }

  .footer__title {
    margin-bottom: 6px;
  }

  .footer__link,
  .footer__text {
    display: block;
    padding: 2px 0;
  }
}

/* ===== FORCE HEADER FIXED + ANIMATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  padding-top: 10px;
  padding-bottom: 10px;
  /* по умолчанию — прозрачный, как на герое */
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    transform 0.35s ease,
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    border-color 0.25s ease;
}

/* включаем blur только по классу */
.site-header.is-blur {
  background: rgba(10, 14, 30, 0.55);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(245, 216, 107, 0.15);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

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