@charset "UTF-8";
/*--- VARIABLES ---*/
:root {
  --bg-start: #8B13C7;
  --bg-end: #FF4D8D;
  --gold: #FFD700;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.85);
  --container: 1670px;
  --glass: rgba(255, 255, 255, 0.07);
  --accent-dark: rgba(0, 0, 0, 0.15);
}

/*--- VARIABLES ---*/
/*--- COMMON ---*/
body {
  font-family: "Montserrat", system-ui, Arial;
  color: var(--white);
}

h1 {
  font-weight: 800;
}
@media (max-width: 767px) {
  h1 {
    font-size: calc(36px + 47.6 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  h1 {
    font-size: calc(36px + 28 * 100vw / 1900);
  }
}

h2 {
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: calc(24px + 34 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  h2 {
    font-size: calc(24px + 20 * 100vw / 1900);
  }
}

a {
  text-decoration: none;
}

.hero {
  background-image: url(../img/background/main-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  position: relative;
}
@media (max-width: 1240px) {
  .hero {
    height: 100vh;
  }
}
@media (max-width: 991px) {
  .hero {
    height: 75vh;
    background-size: contain 100%;
    margin: 67px 0 0 0;
  }
}
@media (max-width: 880px) {
  .hero {
    height: 70vh;
  }
}
@media (max-width: 840px) {
  .hero {
    height: 62vh;
  }
}
@media (max-width: 745px) {
  .hero {
    height: 55vh;
  }
}
@media (max-width: 660px) {
  .hero {
    height: 48vh;
  }
}
@media (max-width: 580px) {
  .hero {
    height: 42vh;
  }
}
@media (max-width: 500px) {
  .hero {
    height: 37vh;
  }
}
@media (max-width: 440px) {
  .hero {
    height: 32vh;
  }
}
@media (max-width: 390px) {
  .hero {
    height: 30vh;
  }
}
@media (max-width: 991px) {
  .hero::before {
    position: absolute;
    content: "";
    top: -68px;
    left: 0;
    right: 0;
    width: 100%;
    height: 68px;
    background: linear-gradient(120deg, var(--bg-start), var(--bg-end));
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 20px;
}

.btn-primary {
  position: relative;
  padding: 14px 35px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(120deg, rgba(139, 19, 199, 0.85), rgba(255, 77, 141, 0.85));
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(139, 19, 199, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

/* Блеск стекла */
.btn-primary::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -50%;
  width: 160%;
  height: 220%;
  background: radial-gradient(60% 30% at 10% 10%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.07) 18%, transparent 40%);
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 1;
}

/* Текст поверх всех слоев */
.btn-primary > span,
.btn-primary {
  position: relative;
  z-index: 2;
}

/* Hover/active эффекты */
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(139, 19, 199, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.12);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.995);
  box-shadow: 0 8px 28px rgba(139, 19, 199, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Фокусная подсветка */
.btn-primary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.25);
  outline-offset: 3px;
}

/*--- COMMON ---*/
/*--- HEADER ---*/
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(225, 0, 255, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
@media (max-width: 991px) {
  header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }
}

.container-header {
  padding: 15px 15px;
}
@media (max-width: 991px) {
  .container-header {
    padding: 10px 15px;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 300px;
}

.logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  box-shadow: 0 6px 18px rgba(139, 19, 199, 0.18);
  border: 2px solid rgba(255, 215, 0, 0.18);
}
@media (max-width: 991px) {
  .logo {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

.menu {
  width: 850px;
}
@media (max-width: 1160px) {
  .menu {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .menu {
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 67px);
    background: linear-gradient(120deg, rgba(139, 19, 199, 0.97), #FF4D8D);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    box-sizing: border-box;
    padding: 10px 10px;
    transform: translateX(150%);
    transition: transform 0.2s ease-in-out;
  }
}

.menu--active {
  transform: translateX(0);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
@media (max-width: 1160px) {
  nav ul {
    gap: 0px;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  nav ul {
    flex-direction: column;
  }
}

nav a {
  color: var(--white);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.22s;
}
@media (max-width: 1160px) {
  nav a {
    padding: 8px 8px;
  }
}
@media (max-width: 991px) {
  nav a {
    display: block;
    padding: 9px 10px;
  }
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
@media (max-width: 991px) {
  nav a:hover,
  nav a.active {
    margin: 0 0 4px 0;
  }
}

@media (max-width: 991px) {
  .menu-list__item {
    box-sizing: border-box;
  }
}

@media (max-width: 991px) {
  .menu-list__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }
}

/*--- HEADER ---*/
/*--- BURGER ---*/
.burger {
  display: none;
  width: 30px;
  height: 25px;
  background-color: transparent;
  font-size: 0;
  border: none;
  position: relative;
}
@media (max-width: 991px) {
  .burger {
    display: block;
  }
}
.burger::before, .burger::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 30px 30px;
  transition: transform 0.2s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger__line {
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 30px 30px;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.burger--active::before {
  top: 45%;
  transform: rotate(47deg);
}

.burger--active::after {
  bottom: 45%;
  transform: rotate(-47deg);
}

.burger--active .burger__line {
  opacity: 0;
}

/*--- BURGER ---*/
/*--- SHOWCASE ---*/
.showcase {
  background: linear-gradient(120deg, var(--bg-start), var(--bg-end));
}

.container-showcase {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1060px) {
  .container-showcase {
    flex-direction: column;
  }
}

.showcase-left {
  width: 50%;
}
@media (max-width: 1400px) {
  .showcase-left {
    width: 40%;
  }
}
@media (max-width: 1060px) {
  .showcase-left {
    width: 100%;
  }
}
.showcase-left .title {
  margin: 20px 0 50px 0;
  letter-spacing: -1px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
@media (max-width: 1060px) {
  .showcase-left .title {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .showcase-left .title {
    margin: 10px 0 20px 0;
  }
}
.showcase-left .subtitle {
  color: var(--muted);
  margin: 0 0 40px 0;
  list-style: 1.35;
}
@media (max-width: 767px) {
  .showcase-left .subtitle {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .showcase-left .subtitle {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.kicker-title {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  padding: 12px 40px;
  border-radius: 12px;
  font-weight: 500;
  margin: 0 0 20px 0;
}
@media (max-width: 400px) {
  .kicker-title {
    flex-direction: column;
    width: 100%;
  }
}

.kicker-econom {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  padding: 12px 40px;
  border-radius: 12px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .kicker-econom {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .kicker-econom {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}
@media (max-width: 400px) {
  .kicker-econom {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}

.kicker .highlight {
  background: var(--gold);
  color: #4a2b00;
  padding: 8px 10px;
  border-radius: 8px;
  margin-left: 10px;
  font-weight: 800;
  font-size: 13px;
}
@media (max-width: 400px) {
  .kicker .highlight {
    width: 100%;
    font-size: 14px;
    text-align: center;
    margin: 10px 0 0 0;
  }
}

.big-percent {
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .big-percent {
    font-size: calc(56px + 68 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .big-percent {
    font-size: calc(56px + 40 * 100vw / 1900);
  }
}

.showcase-cta {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 1400px) {
  .showcase-cta {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .showcase-cta .btn-primary {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

.small-cta {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  padding: 16px 30px;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.showcase-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1400px) {
  .showcase-right {
    width: 60%;
  }
}
@media (max-width: 1060px) {
  .showcase-right {
    width: 100%;
  }
}

.phone-stack {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 670px) {
  .phone-stack {
    flex-direction: column;
  }
}

.phone {
  width: 50%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border: 6px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 670px) {
  .phone {
    width: 100%;
  }
}

.phone img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

/*--- SHOWCASE ---*/
/* --- PLATFORM-SECTION --- */
.platform-section {
  background: linear-gradient(120deg, var(--bg-start), var(--bg-end));
  position: relative;
  overflow: visible;
}

@media (max-width: 450px) {
  .container-platform-section {
    padding: 30px 15px;
  }
}

.platform-inner {
  margin: 0 auto;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 56px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
@media (max-width: 1240px) {
  .platform-inner {
    padding: 30px 30px;
  }
}
@media (max-width: 991px) {
  .platform-inner {
    padding: 10px 10px;
  }
}
.platform-inner h2 {
  margin: 20px 0;
}

.platform-section .title {
  line-height: 1.15;
  margin: 30px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.platform-section .subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 8px 0 0;
}

.platform-section .big-price {
  color: var(--gold);
  font-weight: 900;
  font-size: 28px;
  margin-right: 6px;
}

.platform-section .highlight-line {
  font-size: 20px;
  margin-top: 6px;
  font-weight: 700;
}

.platform-section .brand-name {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.95));
  color: #4a2b00;
  padding: 6px 10px;
  border-radius: 8px;
  margin-left: 8px;
  font-weight: 900;
  letter-spacing: 0.6px;
}
@media (max-width: 400px) {
  .platform-section .brand-name {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin: 10px 0 0 0;
  }
}

.platform-section .hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 567px) {
  .platform-section .hero-cta {
    width: 100%;
  }
}

.platform-section .hero-cta .btn-primary {
  margin: 20px 0 0 0;
}
@media (max-width: 567px) {
  .platform-section .hero-cta .btn-primary {
    width: 100%;
    text-align: center;
    margin: 0px 0 0 0;
  }
}

.platform-section .small-cta {
  padding: 12px 16px;
}

.platform-section {
  position: relative;
  z-index: 2;
}

/* переиспользуем ваши классы - небольшие правки под эту секцию */
.platform-section .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.platform-section .subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 8px 0 0;
}

.platform-section .big-price {
  color: var(--gold);
  font-weight: 900;
  font-size: 28px;
  margin-right: 8px;
}

/* highlight and brand */
.platform-section .highlight-line {
  font-size: 20px;
  margin-top: 8px;
  font-weight: 700;
}

.platform-section .big-statement {
  font-weight: 700;
}
@media (max-width: 767px) {
  .platform-section .big-statement {
    font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .platform-section .big-statement {
    font-size: calc(20px + 4 * 100vw / 1900);
  }
}

.platform-section-text {
  margin: 0 0;
}
@media (max-width: 767px) {
  .platform-section-text {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .platform-section-text {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.platform-section .small-cta {
  padding: 12px 16px;
}

/* ===== Reveal animation helpers ===== */
/* начальное состояние — все элементы с .reveal невидимы и смещены вниз */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.995);
  will-change: transform, opacity;
  transition: opacity 420ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 110ms);
}

/* состояние, когда элемент вошёл в зону видимости */
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ещё одна вариация (если захотите сильнее масштабировать) */
.reveal.scale-strong {
  transform: translateY(24px) scale(0.98);
}

.reveal.in-view.scale-strong {
  transform: translateY(0) scale(1.02);
}

/* --- PLATFORM-SECTION --- */
/* --- P88-PANEL --- */
.p88-panel {
  background: linear-gradient(120deg, var(--bg-start), var(--bg-end));
  position: relative;
}

.p88-panel::before,
.p88-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(36px);
  opacity: 0.35;
  z-index: 0;
}

.p88-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1150px) {
  .p88-wrap {
    flex-direction: column;
  }
}

.p88-left {
  width: 60%;
}
@media (max-width: 1400px) {
  .p88-left {
    width: 52%;
  }
}
@media (max-width: 1150px) {
  .p88-left {
    width: 100%;
  }
}

.p88-title {
  margin: 24px 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.p88-list {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  display: grid;
  gap: 12px;
}

.p88-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.p88-list li .inside-check {
  width: 44px;
  height: 44px;
}
.p88-list li .inside-check::before {
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  width: 32px;
  height: 32px;
}
.p88-list-w li span {
  width: calc(100% - 50px);
}

.p88-lead {
  margin: 18px 0 0 0;
  line-height: 1.55;
}
@media (max-width: 767px) {
  .p88-lead {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .p88-lead {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.p88-sidecard {
  width: 36%;
  transform: translateY(-10px);
}
@media (max-width: 1400px) {
  .p88-sidecard {
    width: 46%;
  }
}
@media (max-width: 1150px) {
  .p88-sidecard {
    width: 100%;
    transform: translateY(70px);
  }
}
@media (max-width: 567px) {
  .p88-sidecard {
    width: 100%;
    transform: translateY(30px);
  }
}

.p88-side-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-sizing: border-box;
  padding: 34px 28px;
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transform: skewY(-4deg);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}
@media (max-width: 567px) {
  .p88-side-inner {
    padding: 30px 14px;
  }
}

.p88-side-inner * {
  transform: skewY(4deg);
}

.p88-side-h {
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  color: #8B13C7;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.95), rgba(255, 215, 0, 0.85));
  box-sizing: border-box;
  padding: 6px 14px;
  margin-bottom: 12px;
  border-radius: 12px 12px;
}
@media (max-width: 1150px) {
  .p88-side-h {
    display: block;
    width: 300px;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .p88-side-h {
    width: 100%;
  }
}

.p88-side-t {
  line-height: 1.5;
  margin: 26px 0;
}
@media (max-width: 767px) {
  .p88-side-t {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .p88-side-t {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.p88-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 567px) {
  .p88-cta {
    flex-direction: column;
  }
}

.p88-cta .btn-primary {
  box-sizing: border-box;
  padding: 14px 20px;
}
@media (max-width: 567px) {
  .p88-cta .btn-primary {
    width: 100%;
    text-align: center;
  }
}

.p88-cta .small-cta {
  box-sizing: border-box;
  padding: 12px 16px;
}
@media (max-width: 567px) {
  .p88-cta .small-cta {
    width: 100%;
  }
}

.p88-side-inner:hover {
  transform: skewY(-2deg) translateY(-8px);
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.44);
}

/* --- RESPONSIVE --- */
/* --- INSIDE JOIN --- */
.inside-join {
  background: linear-gradient(120deg, var(--bg-start), var(--bg-end));
  overflow: visible;
}

.container-inside-join h2 {
  font-weight: 600;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container-inside-join h2 {
    font-size: calc(30px + 13.6 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .container-inside-join h2 {
    font-size: calc(30px + 8 * 100vw / 1900);
  }
}
@media (max-width: 567px) {
  .container-inside-join h2 {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.container-inside-join h2 span {
  font-weight: 800;
}
.container-inside-join h2 span:last-child {
  display: inline-block;
  background-color: var(--gold);
  box-sizing: border-box;
  padding: 2px 14px;
  border-radius: 12px 12px;
  color: #8B13C7;
  font-weight: 700;
}

.inside-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 26px;
  margin: 40px 0 0 0;
}

.inside-card {
  width: calc(33.333% - 20px);
  display: flex;
  gap: 16px;
  box-sizing: border-box;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
@media (max-width: 1400px) {
  .inside-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 991px) {
  .inside-card {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .inside-card {
    padding: 10px;
  }
}

.inside-card--alt {
  grid-template-columns: 1fr 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
}

.inside-check {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.02));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), inset 0 -2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media (max-width: 767px) {
  .inside-check {
    width: 45px;
    height: 45px;
  }
}

.inside-check::before {
  position: absolute;
  content: "";
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  background-image: url(../img/icon/check.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 50px;
  height: 52px;
}
@media (max-width: 767px) {
  .inside-check::before {
    top: calc(50% - 20px);
    left: calc(50% - 21px);
    width: 40px;
    height: 42px;
  }
}

.inside-body {
  width: calc(100% - 60px);
}

.inside-body__title {
  font-weight: 700;
}
@media (max-width: 767px) {
  .inside-body__title {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .inside-body__title {
    font-size: calc(18px + 4 * 100vw / 1900);
  }
}

.inside-body__text {
  line-height: 1.3;
}
@media (max-width: 767px) {
  .inside-body__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .inside-body__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}
.inside-body__text span {
  font-weight: 800;
}

.inside-note {
  color: var(--muted);
  margin-top: 8px;
}

.inside-tips {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--white);
}
@media (max-width: 767px) {
  .inside-tips {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .inside-tips {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.inside-tips li {
  margin-bottom: 8px;
}

.inside-ribbon {
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .inside-ribbon {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .inside-ribbon {
    font-size: calc(16px + 4 * 100vw / 1900);
  }
}

.inside-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

/* --- INSIDE JOIN --- */
/* --- P88-COMPARISON --- */
.p88-comparison {
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
}
.p88-comparison h2 {
  margin: 0;
}

.p88-comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(139, 19, 199, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.container-p88-comparison {
  position: relative;
  z-index: 2;
}

.comparison-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1240px) {
  .comparison-content {
    flex-direction: column;
  }
}

.comparison-text {
  width: 62%;
}
@media (max-width: 1240px) {
  .comparison-text {
    width: 100%;
  }
}

.comparison-lead {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 40px;
  opacity: 0.9;
}

.price-comparison-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.comparison-images {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}
@media (max-width: 767px) {
  .comparison-images {
    flex-direction: column;
  }
}
.comparison-images__inrer {
  width: 50%;
  border-radius: 28px;
  box-sizing: border-box;
  padding: 14px 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border: 6px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 767px) {
  .comparison-images__inrer {
    width: 100%;
  }
}
.comparison-images__title {
  display: inline-block;
  margin: 20px 0 10px 0;
  position: relative;
}
@media (max-width: 767px) {
  .comparison-images__title {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .comparison-images__title {
    font-size: calc(18px + 4 * 100vw / 1900);
  }
}
.comparison-images__title::before {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.img-platforma {
  width: 100%;
  height: 480px;
  border-radius: 10px 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 840px) {
  .img-platforma {
    height: 400px;
  }
}
@media (max-width: 400px) {
  .img-platforma {
    height: 300px;
  }
}

.image-placeholder {
  margin: 0px 0 16px 0;
}
@media (max-width: 767px) {
  .image-placeholder {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .image-placeholder {
    font-size: calc(18px + 4 * 100vw / 1900);
  }
}

.comparison-savings {
  text-align: center;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 16px;
  display: block;
  width: 180px;
  margin: 0 auto;
}

.comparison-highlight {
  text-align: center;
  margin: 40px 0 15px 0;
}
@media (max-width: 767px) {
  .comparison-highlight {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .comparison-highlight {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.comparison-subtitle {
  text-align: center;
  opacity: 0.9;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .comparison-subtitle {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .comparison-subtitle {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}
@media (max-width: 950px) {
  .process-flow {
    gap: 10px;
  }
}

.flow-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  padding: 20px 10px;
  border-radius: 15px;
  width: 29%;
}
@media (max-width: 950px) {
  .flow-item {
    width: 100%;
    padding: 10px 10px;
  }
}

.flow-icon {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .flow-icon {
    font-size: calc(22px + 17 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .flow-icon {
    font-size: calc(22px + 10 * 100vw / 1900);
  }
}

.flow-text {
  line-height: 1.4;
}
@media (max-width: 767px) {
  .flow-text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .flow-text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.flow-arrow {
  font-size: 24px;
  color: var(--gold);
  opacity: 0.7;
}
@media (max-width: 950px) {
  .flow-arrow {
    transform: rotate(90deg);
  }
}

.comparison-cta {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(139, 19, 199, 0.1), rgba(255, 215, 0, 0.15));
  border-radius: 15px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .comparison-cta {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .comparison-cta {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

/* Sidebar */
.comparison-sidebar {
  width: 35%;
  margin: 90px 0 0 0;
}
@media (max-width: 1240px) {
  .comparison-sidebar {
    width: 100%;
    margin: 30px 0 0 0;
  }
}

.sidebar-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1240px) {
  .sidebar-card {
    position: static;
  }
}

.sidebar-header {
  background: linear-gradient(135deg, rgba(139, 19, 199, 0.2), rgba(255, 215, 0, 0.15));
  box-sizing: border-box;
  padding: 25px;
  text-align: center;
}

.sidebar-logo {
  font-weight: 900;
  background-color: var(--gold);
  box-sizing: border-box;
  padding: 4px 14px;
  border-radius: 12px 12px;
  color: #8B13C7;
}
@media (max-width: 767px) {
  .sidebar-logo {
    font-size: calc(22px + 10.2 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .sidebar-logo {
    font-size: calc(22px + 6 * 100vw / 1900);
  }
}

.sidebar-content {
  box-sizing: border-box;
  padding: 0px 30px 10px 30px;
}
@media (max-width: 767px) {
  .sidebar-content {
    padding: 0px 10px 10px 10px;
  }
}
.sidebar-content .btn-primary {
  display: block;
  width: 250px;
  text-align: center;
  margin: 14px auto;
}
@media (max-width: 567px) {
  .sidebar-content .btn-primary {
    box-sizing: border-box;
    width: 100%;
  }
}

.sidebar-text {
  line-height: 1.35;
  margin-bottom: 25px;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .sidebar-text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .sidebar-text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.sidebar-features {
  margin: 14px 0;
}
.sidebar-features .inside-check {
  width: 35px;
  height: 35px;
}
.sidebar-features .inside-check::before {
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  width: 32px;
  height: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .feature {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .feature {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}
.feature span {
  display: block;
  width: calc(100% - 40px);
  font-weight: 500;
}

.feature-icon {
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-note {
  background: rgba(255, 215, 0, 0.1);
  box-sizing: border-box;
  padding: 15px;
  border-radius: 10px;
  margin: 25px 0;
}
@media (max-width: 767px) {
  .sidebar-note {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .sidebar-note {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.sidebar-exclusive {
  font-style: italic;
  text-align: center;
  box-sizing: border-box;
  padding: 15px;
  background: rgba(139, 19, 199, 0.1);
  border-radius: 10px;
  margin: 25px 0;
}
@media (max-width: 767px) {
  .sidebar-exclusive {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .sidebar-exclusive {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.sidebar-philosophy h4 {
  color: var(--gold);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sidebar-philosophy h4 {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .sidebar-philosophy h4 {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.sidebar-philosophy p {
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sidebar-philosophy p {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .sidebar-philosophy p {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.philosophy-final {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .philosophy-final {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .philosophy-final {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

/*--- FEEDBACK ---*/
.feedback {
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
}

.container-feedback h2 {
  margin: 0 0;
}

.swiper {
  position: relative;
}

.mySwiper {
  margin: -50px 0 0 0;
}

.swiper-wrapper {
  margin: 0 0 40px 0;
  box-sizing: border-box;
  padding: 100px 0 0 0;
}
@media (max-width: 567px) {
  .swiper-wrapper {
    padding: 80px 0 0 0;
  }
}

.swiper-slide {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: rgba(34, 14, 37, 0.12) 0px 2px 4px 0px, rgba(33, 14, 37, 0.32) 0px 2px 16px 0px;
  box-sizing: border-box;
  padding: 30px 30px;
  border-radius: 10px 10px;
}
@media (max-width: 567px) {
  .swiper-slide {
    padding: 10px 10px;
  }
}
.swiper-slide__header {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .swiper-slide__title {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .swiper-slide__title {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}
.swiper-slide__text {
  line-height: 1.3;
}
@media (max-width: 767px) {
  .swiper-slide__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .swiper-slide__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.circle-user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-weight: 600;
  border-radius: 100%;
  background: rgba(255, 215, 0, 0.1);
  margin: 0 10px 0 0;
}

.swiper-slide-group {
  width: calc(100% - 70px);
}

.group-star {
  margin: 4px 0 0px 0;
}
/*--- FEEDBACK ---*/
.pricing-magic {
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  position: relative;
  overflow: hidden;
}

/* Заголовок с блестками */
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sparkle-left,
.sparkle-right {
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-left__img {
  width: 70px;
}

.sparkle-right {
  animation-delay: 1s;
}

.pricing-title {
  text-align: center;
  margin: 0;
  background: linear-gradient(135deg, var(--gold), #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Карточка с ценой */
.price-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 25px;
  padding: 30px 45px;
  text-align: center;
  margin: 30px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  max-width: 300px;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff69b4, #8B13C7);
  padding: 6px 20px;
  border-radius: 15px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .price-badge {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .price-badge {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.price-amount {
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .price-amount {
    font-size: calc(32px + 34 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .price-amount {
    font-size: calc(32px + 20 * 100vw / 1900);
  }
}

.price-currency {
  font-size: 18px;
  opacity: 0.9;
}

.price-note {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .price-note {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .price-note {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

/* Сравнение цен */
.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.price-option {
  background: rgba(255, 255, 255, 0.08);
  padding: 26px 60px;
  border-radius: 20px;
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.price-option.current {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.price-option.future {
  opacity: 0.7;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.option-badge {
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .option-badge {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .option-badge {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.option-price {
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .option-price {
    font-size: calc(26px + 17 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .option-price {
    font-size: calc(26px + 10 * 100vw / 1900);
  }
}

.option-time {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .option-time {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .option-time {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.comparison-arrow {
  font-size: 24px;
  animation: bounce 2s infinite;
}
@media (max-width: 767px) {
  .comparison-arrow {
    transform: rotate(90deg);
  }
}

/* Основной призыв к действию */
.cta-main {
  text-align: center;
  margin: 40px 0;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Финальный призыв */
.final-cta {
  text-align: center;
  margin-top: 50px;
}

.final-buttons {
  margin-bottom: 30px;
}

.btn-final-telegram {
  display: inline-block;
  background: linear-gradient(135deg, #8B13C7, #ff69b4);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.final-highlight {
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-final-telegram:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(139, 19, 199, 0.3);
}

.final-ps {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 20px;
  margin-top: 30px;
  position: relative;
}

.final-sparkle {
  font-size: 20px;
  margin: 10px 0;
}

.final-text {
  margin: 0;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .final-text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .final-text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

/* Анимации */
@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 24px;
  }
  .investment-section {
    flex-direction: column;
    text-align: center;
  }
  .price-comparison {
    flex-direction: column;
  }
  .comparison-arrow {
    transform: rotate(90deg);
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-telegram,
  .btn-save {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
/*--- WHATSAPP ---*/
.telegram-fixed {
  position: fixed;
  right: 50px;
  bottom: 70px;
  z-index: 10;
  cursor: pointer;
}

@media (max-width: 790px) {
  .telegram-fixed {
    right: 30px;
    bottom: 35px;
  }
}
@media (max-width: 790px) {
  .link-phone {
    display: none;
  }
}
@media (max-width: 790px) {
  .link-phone svg {
    display: none;
  }
}
.link-phone-mob {
  display: none;
}

@media (max-width: 790px) {
  .link-phone-mob {
    display: block;
  }
}
@media (max-width: 790px) {
  .link-phone-mob img {
    width: 35px;
    transform: translate(-5%, -20%);
  }
}
.size-button {
  width: 50px;
  height: 50px;
  background: linear-gradient(rgb(72, 188, 224) 0%, rgb(38, 133, 211) 100%);
  border: 2px solid rgb(187, 228, 255);
  padding: 10px;
  border-radius: 100%;
  text-align: center;
  animation: pulse 1.5s infinite;
}

.size-button:hover {
  transition: transform 0.2s ease-in-out;
  transform: scale(1.15);
}

@media (max-width: 790px) {
  .size-button {
    width: 40px;
    height: 40px;
  }
}
.telegram-icon {
  transform: translate(-2px, 0px);
  fill: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 188, 224, 0.4);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(72, 188, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 188, 224, 0);
  }
}
/*--- WHATSAPP ---*/

.reviews-text p {
    @include adaptiv-size(18, 16);
    line-height: 1.5;
}
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
  padding: 40px 0;
}

.review-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.review-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.review-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.review-item video:hover {
  filter: brightness(1.05);
}

/* Современная адаптация под мобильные устройства */
@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
}
