:root {
  --vip-blue: #315bff;
  --vip-deep-blue: #2939ef;
  --vip-gold: #f7d88e;
  --vip-orange: #ff9f42;
  --vip-text: #333333;
  --vip-muted: #777777;
  --vip-light-bg: #f4f8fd;
  --vip-shadow: 0 18px 60px rgba(26, 57, 178, 0.12);
}

.site-header {
  margin-bottom: 0;
}

.site-content {
  padding-bottom: 0;
}

.vip-page-template {
  color: var(--vip-text);
  background: #ffffff;
}

.vip-page-template img {
  display: block;
  max-width: 100%;
  height: auto;
}

.vip-page-template a {
  text-decoration: none;
}

.vip-container {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

.vip-container--wide {
  width: min(1340px, calc(100% - 80px));
}

.vip-section-title {
  display: flex;
  justify-content: center;
}

.vip-section-title--left {
  justify-content: flex-start;
}

.vip-section-title img {
  width: auto;
  max-width: 300px;
}

.vip-benefits .vip-section-title img{
  max-width: 156px;

}.vip-activity .vip-section-title img{
  max-width: 188px;

}.vip-scenes .vip-section-title img{
  max-width: 180px;

}
.vip-conference .vip-section-title img{
  max-width: 604px;

}.vip-forum .vip-section-title img{
  max-width: 153px;

}

.vip-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 73px;
  background: #2c3ff0 url("../../images/vip/banner.png") center top / cover no-repeat;
}

.vip-hero__title {
  display: flex;
  justify-content: center;
}

.vip-hero__title img {
  width: min(598px, 100%);
}

.vip-hero__tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(1000px, 100%);
  margin: 60px auto 80px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);

}

.vip-hero__tab {
  min-height: 70px;
  position: relative;
  border: 0;
  /*border-radius: 16px;*/
  background: transparent;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 33px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease,
    background-color 0.28s ease;
}

.vip-hero__tab::before,
.vip-hero__tab::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.vip-hero__tab::before {
  inset: 6px 10px;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 46%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-120%);
  transition: transform 0.45s ease, opacity 0.28s ease;
}

.vip-hero__tab::after {
  left: var(--vip-ripple-x, 50%);
  top: var(--vip-ripple-y, 50%);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(-50%, -50%) scale(0);
}

.vip-hero__tab:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 12, 77, 0.18);
  /*background-color: rgba(255, 255, 255, 0.08);*/
}

.vip-hero__tab:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.vip-hero__tab:active {
  transform: translateY(0) scale(0.98);
}

.vip-hero__tab.is-clicked::after {
  opacity: 1;
  animation: vipHeroTabRipple 0.58s ease-out forwards;
}

.vip-hero__tab.is-active {
  color: #333;
  font-weight: 600;
  background: url("../../images/vip/tab-bg@2x.png") center center / 100% 100% no-repeat;
  /*box-shadow: 0 12px 28px rgba(8, 30, 110, 0.24);*/
  transform: translateY(-1px);
}

.vip-hero__tab.is-active:hover {
  color: #222222;
  background-color: transparent;
}

.vip-hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 1fr);
  align-items: center;
  gap: 60px;
  perspective: 2000px;
  perspective-origin: center center;
}

.vip-hero__media-stage,
.vip-hero__copy-stage {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
}

.vip-hero__media-stage {
  aspect-ratio: 1444 / 830;
}

.vip-hero__copy-stage {
  min-height: 220px;
}

.vip-hero__media-panel,
.vip-hero__copy-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-style: preserve-3d;
}

.vip-hero__media-panel.is-active,
.vip-hero__copy-panel.is-active,
.vip-hero__media-panel.is-leaving,
.vip-hero__copy-panel.is-leaving {
  opacity: 1;
  visibility: visible;
}

.vip-hero__media-panel.is-active,
.vip-hero__copy-panel.is-active {
  z-index: 2;
}

.vip-hero__media-panel.is-leaving,
.vip-hero__copy-panel.is-leaving {
  z-index: 1;
}

.vip-hero__media-panel {
  display: flex;
}

.vip-hero__copy-panel {
  display: flex;
  align-items: center;
}

.vip-hero__media,
.vip-hero__copy {
  opacity: 0;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.vip-hero__media {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 2px solid rgba(186, 210, 255, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-92px) scale(0.93);
  transform-origin: center center;
}

.vip-hero__media img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.vip-hero__copy {
  width: 100%;
  transform: translateX(136px) scale(0.96);
  transform-origin: left center;
}

.vip-hero__media-panel.is-revealed .vip-hero__media,
.vip-hero__copy-panel.is-revealed .vip-hero__copy {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.vip-hero__media-panel.is-entering .vip-hero__media {
  animation: vipHeroMediaIn 0.72s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.vip-hero__media-panel.is-leaving .vip-hero__media {
  animation: vipHeroMediaOut 0.44s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vip-hero__copy-panel.is-entering .vip-hero__copy {
  animation: vipHeroCopyIn 0.68s cubic-bezier(0.2, 0.9, 0.2, 1) 0.04s both;
}

.vip-hero__copy-panel.is-leaving .vip-hero__copy {
  animation: vipHeroCopyOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vip-hero__media-panel.is-forward.is-entering .vip-hero__media {
  animation: vipHeroMediaIn 0.72s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.vip-hero__media-panel.is-forward.is-leaving .vip-hero__media {
  animation: vipHeroMediaOut 0.44s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vip-hero__media-panel.is-backward.is-entering .vip-hero__media {
  animation: vipHeroMediaIn 0.72s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.vip-hero__media-panel.is-backward.is-leaving .vip-hero__media {
  animation: vipHeroMediaOut 0.44s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vip-hero__copy-panel.is-forward.is-entering .vip-hero__copy {
  animation: vipHeroCopyIn 0.68s cubic-bezier(0.2, 0.9, 0.2, 1) 0.04s both;
}

.vip-hero__copy-panel.is-forward.is-leaving .vip-hero__copy {
  animation: vipHeroCopyOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vip-hero__copy-panel.is-backward.is-entering .vip-hero__copy {
  animation: vipHeroCopyIn 0.68s cubic-bezier(0.2, 0.9, 0.2, 1) 0.04s both;
}

.vip-hero__copy-panel.is-backward.is-leaving .vip-hero__copy {
  animation: vipHeroCopyOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vip-hero__copy h1 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 36px;
  line-height: 50px;
  font-weight: 500;
}

.vip-hero__copy p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 33px;
}

@keyframes vipHeroTabRipple {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0);
  }

  55% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(10);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}

@keyframes vipHeroMediaIn {
  0% {
    opacity: 0;
    transform: translateX(-126px) scale(0.88);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes vipHeroMediaOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-72px) scale(0.97);
  }
}

@keyframes vipHeroCopyIn {
  0% {
    opacity: 0;
    transform: translateX(156px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes vipHeroCopyOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(64px) scale(0.98);
  }
}

.vip-benefits {
  padding: 53px 0 50px;
  background: var(--vip-light-bg);
}

.vip-benefits__table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}

.vip-benefits__table {
  width: 100%;
  min-width: 1180px;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
  /* background: #ffffff; */
  border-bottom: 1px solid #e4ddd4;

  /* border-radius: 16px; */
  /* box-shadow: var(--vip-shadow); */
}
.vip-benefits__table tbody{
  border:  solid #e4ddd4;
  border-width: 0 1px;
}
.vip-benefits__col--group {
  width: 200px;
}

.vip-benefits__col--feature {
  width: 480px;
}

.vip-benefits__col--month,
.vip-benefits__col--quarter,
.vip-benefits__col--year {
  width: 166px;
}




.vip-benefits__group,
.vip-benefits__feature,
.vip-benefits__cell,
.vip-benefits__foot-spacer {
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  vertical-align: middle;
}

.vip-benefits__head {
  height: 110px;
  padding: 0;
  text-align: center;

}

.vip-benefits__head-inner {
  display: flex;
  box-sizing: border-box;
  min-height: 110px;
  width: 100%;
}

.vip-benefits__head-inner--desc {
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-height: 82px;
  background: #3385FF3C;
}

.vip-benefits__head-inner--plan {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
}

.vip-benefits__head--desc {

  color: #333333;
  font-size: 20px;

  font-weight: 600;
  vertical-align: bottom;
}

.vip-benefits__head--plan {
  color: #ffffff;
  text-align: center;
}

.vip-benefits__head--month {
  border-top-left-radius: 16px;

  background: #855CF4FF;
}

.vip-benefits__head--quarter {
  background: #F7CF99FF;
  color: #5C3813FF;
}

.vip-benefits__head--year {
  border-top-right-radius: 16px;
  border-right: 0;
  background: #615357FF;
  color: #FFE1C5FF;
}

.vip-benefits__plan-name {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}

.vip-benefits__plan-price {
  display: inline-flex;
  align-items: baseline;

  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  /*letter-spacing: -0.02em;*/
}

.vip-benefits__plan-price em {
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.vip-benefits__group,
.vip-benefits__feature,
.vip-benefits__cell {
  height: 48px;
  padding: 0 20px;
  text-align: center;
}

.vip-benefits__group {
  background: #ffffff;
  color: #333333;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.vip-benefits__feature {
  background: #ffffff;
  padding: 0 28px 0 48px;
  text-align: left;
  white-space: nowrap;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.vip-benefits__feature--platform {
  color: #203C88FF;
}

.vip-benefits__feature--service {
  color: #83600FFF;
}

.vip-benefits__cell--month {
  background: rgba(132, 87, 239, 0.1);
}

.vip-benefits__cell--quarter {
  background: rgba(248, 207, 142, 0.15);
}

.vip-benefits__cell--year {
  border-right: 0;
  background: rgba(105, 92, 96, 0.09);
}

.vip-benefits__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 24px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.vip-benefits__badge-image {
  display: block;
  width: 88px;
  height: 22px;
  margin: 0 auto;
}

.vip-benefits__badge::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: none;
}

.vip-benefits__badge--month {
  color: #7750E5;
  background: #C2B6FF;
  background: linear-gradient(270deg, rgba(194, 182, 255, 1) 0%, rgba(226, 217, 255, 1) 100%);
}

.vip-benefits__badge--month::before {
  background: radial-gradient(circle at 50% 50%, #ffffff 0 16%, #d7cbff 17%, #a57cff 58%, #8457ef 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.vip-benefits__badge--quarter {
  color: #9f7421;
  background: rgba(248, 207, 142, 0.32);

  background: linear-gradient(270deg, #E0C791 0%, #FFEFD1 100%);

}

.vip-benefits__badge--quarter::before {
  background: radial-gradient(circle at 50% 50%, #ffffff 0 16%, #fff1c3 17%, #ffca55 58%, #f0ab1d 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.vip-benefits__badge--year {
  color: #fff1dc;
  background: rgba(105, 92, 96, 0.92);
  background: linear-gradient(270deg, #73666A 0%, #8E8386 100%);

}

.vip-benefits__badge--year::before {
  background: radial-gradient(circle at 50% 50%, #ffffff 0 16%, #f5e1b6 17%, #f3b550 58%, #83654b 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.vip-benefits__state {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.vip-benefits__state--yes {
  background: #2DAC6AFF;
}

.vip-benefits__state--yes::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.vip-benefits__state--no {
  background: #999;
}

.vip-benefits__state--no::before,
.vip-benefits__state--no::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 12px;
  height: 2px;
  background: #ffffff;
}

.vip-benefits__state--no::before {
  transform: rotate(45deg);
}

.vip-benefits__state--no::after {
  transform: rotate(-45deg);
}

.vip-benefits__text {
  display: inline-block;
  white-space: nowrap;
  color: #333;
  font-size: 16px;
  line-height: 22px;

}

.vip-benefits__foot-spacer {
  border-bottom: 0;
  background: #ffffff;

  border-left: 1px solid #e1e1e1;
}

.vip-benefits__cell--footer {
  height: 80px;
  padding: 0;

  border-right: 1px solid #e1e1e1;
}

.vip-benefits__cell--footer.vip-benefits__cell--year {
  /*border-bottom-right-radius: 16px;*/
}

.vip-benefits__join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  height: 40px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vip-benefits__join:hover {
  transform: translateY(-2px);
}

.vip-benefits__join--month {
  color: #ffffff;
  background: #8457ef;

}

.vip-benefits__join--quarter {
  color: #6f4e27;
  background: #f8cf8e;

}

.vip-benefits__join--year {
  color: #ffffff;
  background: #695c60;

}

.vip-activity {
  padding: 41px 0 121px;
  background: #ffffff;
}

.vip-activity__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 64px;
  margin-top: 52px;
}

.vip-activity__copy h2,
.vip-forum__copy h2 {
  margin: 0 0 37px;
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  color: #333;
}

.vip-activity__copy p,
.vip-forum__copy p {
  margin: 0 0 20px;
  color: #666;
  font-size: 18px;
  line-height: 31px;
}

.vip-activity__copy p:last-of-type,
.vip-forum__copy p:last-of-type {
  margin-bottom: 0;
}

.vip-activity__media img,
.vip-forum__media img {
  width: 100%;
}

.vip-stats-grid {
  display: grid;
  grid-template-columns: 118px repeat(3, 1fr);
  margin-top: 50px;
}


.vip-forum .vip-stats-grid {
  margin-top: 68px;

  grid-template-columns: 138px 170px 132px 1fr;

}



.vip-stat-card {
  position: relative;
  /*padding: 0 12px 0 0;*/
}

.vip-stat-card:not(:first-child) {
  padding-left: 43px;
}

.vip-forum .vip-stat-card:not(:first-child) {
  padding-left: 30px;
}


.vip-stat-card:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 1px;
  height: 52px;
  background: #d7dbe3;
}

.vip-stat-card strong {
  display: block;
  margin-bottom: 3px;
  color: #333;
  font-size: 34px;
  line-height: 48px;
  font-weight: 600;
}

.vip-stat-card span {
  display: block;
  color: #333;
  font-size: 18px;
  line-height: 25px;
}

.vip-scenes {
  padding: 50px 0 60px;
  background: #d9efff url("../../images/vip/duoyuanbeijing.png") center top / cover no-repeat;
}

.vip-scenes__intro,
.vip-conference__subtitle {
  width: min(960px, 100%);
  margin: 30px auto 0;
  text-align: center;
  color: #3e4c62;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}

.vip-scenes__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.vip-scene-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(26, 57, 178, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vip-scene-card--wide {
  grid-column: span 3;
}

.vip-scenes__grid .vip-scene-card:not(.vip-scene-card--wide) {
  grid-column: span 2;
}

.vip-scene-card img {
  width: 100%;
}

.vip-scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(26, 57, 178, 0.16);
}

.vip-scene-card.is-disabled {
  cursor: default;
}

.vip-scene-card.is-disabled:hover {
  transform: none;
  box-shadow: 0 16px 34px rgba(26, 57, 178, 0.12);
}

.vip-scenes__more {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 220px;
  height: 71px;
  margin: 40px auto 0;
  padding-top: 11px;
  background: url("../../images/vip/view-more@2x.png") center center / 100% 100% no-repeat;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease;
}

.vip-scenes__more::after {
  content: ">";
  margin-left: 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.vip-scenes__more:hover {
  transform: translateY(-2px);
}

.vip-forum {
  padding: 56px 0 106px;
  background: #ffffff;
}

.vip-forum__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 74px;
  margin-top: 100px;
}

.vip-conference {
  padding: 92px 0 110px;
  background: #f3f7fd;
}

.vip-conference__subtitle span,
.vip-conference__subtitle a {
  color: #3385FFFF;
}

.vip-conference__subtitle a:hover {
  color: #2e6fe8;
}

.vip-conference__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.vip-conference .post-7 .post-7-li {
  min-width: 0;
}

.vip-conference .post-7 .post-7-li .item-in {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vip-conference .post-7 .post-7-thumb {
  background: #edf4ff;
}

.vip-conference .post-7 .post-7-body {
  flex: 1 1 auto;
  padding: 10px 15px 25px;
}

.vip-conference .post-7 .post-7-meta {
  margin-bottom: 20px;
}

.vip-conference .post-7 .post-7-end {
  right: 18px;
  bottom: 123px;
}

.vip-conference .post-7 .post-7-end img {
  display: block;
}

.vip-conference-card__poster--fallback {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2250d7 0%, #26b76d 100%);
  color: #ffffff;
}

.vip-conference-card__poster-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 22px 18px;
}

.vip-conference-card__poster-title {
  display: block;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vip-conference-card__poster-subtitle {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.vip-conference .post-7 .post-7-body .vip-conference-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 36px;
  margin: auto auto 0;
  border-radius: 4px;
  background: #3984ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.vip-conference .post-7 .post-7-body .vip-conference-card__button:hover {
  background: #2d74ea;
  transform: translateY(-1px);
}

.vip-conference__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-top: 46px;
  border-radius: 16px;
  background: #ffffff;
  color: #7d899d;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 18px 38px rgba(47, 78, 160, 0.08);
}

.vip-footer-cta {
  padding: 116px 0;
  background: #2c3ff0 url("../../images/vip/banner.png") center bottom / cover no-repeat;
}

.vip-footer-cta .vip-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;
}
.vip-footer-cta__title{
  flex-basis: 507px;
}
.vip-footer-cta__title img {
  width: min(507px, 100%);
}

.vip-footer-cta__button {
  display: block;
  flex: 0 0 300px;
  transition: transform 0.25s ease;
}

.vip-footer-cta__button:hover {
  transform: translateY(-3px);
}

@media (max-width: 1399px) {
  .vip-container,
  .vip-container--wide {
    width: calc(100% - 64px);
  }

  .vip-hero {
    padding: 72px 0 64px;
  }

  .vip-hero__tabs {
    margin: 56px auto 54px;
  }

  .vip-hero__tab {
    min-height: 56px;
    font-size: 22px;
  }

  .vip-hero__stage,
  .vip-activity__layout,
  .vip-forum__layout {
    gap: 42px;
  }

  .vip-hero__copy h1,
  .vip-activity__copy h2,
  .vip-forum__copy h2 {
    font-size: 44px;
  }

  .vip-hero__copy p {
    font-size: 22px;
  }

  .vip-stat-card strong {
    font-size: 46px;
  }

  .vip-stat-card span {
    font-size: 18px;
  }

  .vip-benefits__head {
    height: 102px;
  }

  .vip-benefits__head-inner {
    min-height: 102px;
  }

  .vip-benefits__head-inner--desc {
    min-height: 76px;
  }

  .vip-benefits__head--desc {
    font-size: 22px;
  }

  .vip-benefits__plan-name {
    font-size: 21px;
  }

  .vip-benefits__plan-price {
    font-size: 26px;
  }

  .vip-benefits__group {
    font-size: 22px;
  }

  .vip-benefits__feature {
    padding-left: 36px;
    font-size: 17px;
  }

  .vip-benefits__text {
    font-size: 17px;
  }

  .vip-scenes,
  .vip-conference {
    padding-left: 0;
    padding-right: 0;
  }

  .vip-conference__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vip-footer-cta .vip-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .vip-container,
  .vip-container--wide {
    width: calc(100% - 32px);
  }

  .vip-section-title img {
    max-width: 220px;
  }

  .vip-hero {
    padding: 50px 0 52px;
  }

  .vip-hero__title img {
    width: min(430px, 100%);
  }

  .vip-hero__tabs {
    /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
    /*margin: 34px auto 36px;*/
    /*padding: 8px;*/
  }

  .vip-hero__tab {
    min-height: 52px;
    font-size: 20px;
  }

  .vip-hero__stage,
  .vip-activity__layout,
  .vip-forum__layout,
  .vip-footer-cta .vip-container {
    grid-template-columns: 1fr;
    display: grid;
  }

  .vip-hero__stage {
    gap: 24px;
  }

  .vip-hero__media-stage {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .vip-hero__copy-stage {
    min-height: 144px;
  }

  .vip-hero__copy,
  .vip-footer-cta {
    text-align: center;
  }

  .vip-activity__copy,
  .vip-forum__copy {
    text-align: left;
  }

  .vip-hero__copy h1,
  .vip-activity__copy h2,
  .vip-forum__copy h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .vip-hero__copy p {
    font-size: 18px;
    line-height: 1.7;
  }

  .vip-benefits,
  .vip-activity,
  .vip-scenes,
  .vip-forum,
  .vip-conference,
  .vip-footer-cta {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .vip-benefits__table {
    min-width: 890px;
  }

  .vip-benefits__table-wrap {
    margin: 20px -16px 0;
    padding: 0 16px 8px;
  }

  .vip-benefits__col--group {
    width: 140px;
  }

  .vip-benefits__col--feature {
    width: 300px;
  }

  .vip-benefits__col--month,
  .vip-benefits__col--quarter,
  .vip-benefits__col--year {
    width: 150px;
  }

  .vip-benefits__head {
    height: 94px;
  }

  .vip-benefits__head-inner {
    min-height: 94px;
  }

  .vip-benefits__head-inner--desc {
    min-height: 70px;
  }

  .vip-benefits__head--desc {
    font-size: 20px;
    line-height: 30px;
  }

  .vip-benefits__plan-name {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 28px;
  }

  .vip-benefits__plan-price {
    font-size: 25px;
  }

  .vip-benefits__plan-price em {
    font-size: 16px;
  }

  .vip-benefits__group {
    font-size: 21px;
  }

  .vip-benefits__feature,
  .vip-benefits__text {
    font-size: 16px;
    line-height: 23px;
  }

  .vip-benefits__feature {
    padding: 0 18px 0 28px;
  }

  .vip-benefits__badge {
    font-size: 13px;
  }

  .vip-benefits__cell--footer {
    height: 72px;
  }

  .vip-benefits__join {
    min-width: 138px;
    height: 38px;
    font-size: 17px;
  }

  .vip-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    margin-top: 40px;
  }

  .vip-activity__layout,
  .vip-forum__layout {
    gap: 36px;
    margin-top: 44px;
  }

  .vip-forum__copy {
    order: 1;
  }

  .vip-forum__media {
    order: 2;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .vip-activity__copy p,
  .vip-forum__copy p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
  }

  .vip-stat-card,
  .vip-stat-card:not(:first-child) {
    padding: 0;
    text-align: center;
  }

  .vip-stat-card::before,
  .vip-stat-card:not(:first-child)::before {
    display: none;
  }

  .vip-stat-card strong {
    font-size: 38px;
    margin-bottom: 8px;
  }

  .vip-stat-card span {
    font-size: 16px;
  }

  .vip-scenes__intro,
  .vip-conference__subtitle {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .vip-forum .vip-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    margin-top: 32px;
  }

  .vip-forum .vip-stat-card,
  .vip-forum .vip-stat-card:not(:first-child) {
    padding-left: 0;
  }

  .vip-scenes__grid,
  .vip-conference__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .vip-scene-card--wide,
  .vip-scenes__grid .vip-scene-card:not(.vip-scene-card--wide) {
    grid-column: span 1;
  }

  .vip-scenes__more {
    width: 180px;
    height: 58px;
    margin-top: 30px;
    padding-top: 11px;
    font-size: 14px;
  }

  .vip-conference .post-7 .post-7-body {
    padding: 12px 14px 14px;
  }

  .vip-conference .post-7 .post-7-body h2 {
    margin-bottom: 6px;
  }

  .vip-conference .post-7 .post-7-desc {
    margin-bottom: 8px;
  }

  .vip-conference .post-7 .post-7-meta {
    gap: 6px;
    margin: 0 -14px 14px;
    padding: 9px 14px 0;
  }

  .vip-conference .post-7 .post-7-meta-item {
    font-size: 12px;
  }

  .vip-conference-card__poster-title {
    font-size: 28px;
  }

  .vip-footer-cta .vip-container {
    gap: 28px;
    justify-items: center;
  }

  .vip-footer-cta__title {
    flex-basis: auto;
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .vip-footer-cta__button {
    flex-basis: auto;
    width: min(300px, 100%);
  }
}

@media (max-width: 480px) {
  .vip-container,
  .vip-container--wide {
    width: calc(100% - 20px);
  }

  .vip-section-title img {
    max-width: 180px;
  }

  .vip-hero {
    padding: 36px 0 40px;
  }

  .vip-hero__title img {
    width: min(300px, 100%);
  }

  .vip-hero__tabs {

    gap: 6px;
    margin: 24px auto 28px;
    padding: 6px;
    border-radius: 8px;
  }

  .vip-hero__tab {
    /* min-height: 48px; */
    font-size: 12px;
    padding: 0;
  }

  .vip-hero__tab:hover{
    background-color: transparent;
    box-shadow: none;
  }

  .vip-hero__stage {
    gap: 18px;
  }

  .vip-hero__media-stage {
    aspect-ratio: 16 / 10;
  }

  .vip-hero__copy-stage {
    min-height: 120px;
  }

  .vip-hero__copy h1,
  .vip-activity__copy h2,
  .vip-forum__copy h2 {
    font-size: 26px;
  }

  .vip-hero__copy h1 {
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .vip-hero__copy p,
  .vip-activity__copy p,
  .vip-forum__copy p {
    font-size: 15px;
    line-height: 1.8;
  }

  .vip-benefits,
  .vip-activity,
  .vip-scenes,
  .vip-forum,
  .vip-conference,
  .vip-footer-cta {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .vip-benefits__table {
    min-width: 690px;
  }

  .vip-benefits__table-wrap {
    margin: 18px -10px 0;
    padding: 0 10px 8px;
  }

  .vip-benefits__col--group {
    width: 110px;
  }

  .vip-benefits__col--feature {
    width: 220px;
  }

  .vip-benefits__col--month,
  .vip-benefits__col--quarter,
  .vip-benefits__col--year {
    width: 120px;
  }

  .vip-benefits__head {
    height: 86px;
  }

  .vip-benefits__head-inner {
    min-height: 86px;
  }

  .vip-benefits__head-inner--desc {
    min-height: 64px;
  }

  .vip-benefits__head--desc {
    font-size: 18px;
    line-height: 28px;
  }

  .vip-benefits__plan-name {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 24px;
  }

  .vip-benefits__plan-price {
    font-size: 22px;
  }

  .vip-benefits__plan-price em {
    font-size: 15px;
  }

  .vip-benefits__group {
    font-size: 20px;
    line-height: 30px;
  }

  .vip-benefits__feature,
  .vip-benefits__text {
    font-size: 15px;
    line-height: 22px;
  }

  .vip-benefits__feature {
    padding: 0 14px 0 22px;
  }

  .vip-benefits__badge {
    height: 22px;
    padding: 0 10px 0 8px;
    font-size: 12px;
  }

  .vip-benefits__badge::before {
    width: 12px;
    height: 12px;
  }

  .vip-benefits__state {
    width: 24px;
    height: 24px;
  }

  .vip-benefits__state--yes::before {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 10px;
  }

  .vip-benefits__state--no::before,
  .vip-benefits__state--no::after {
    left: 6px;
    top: 11px;
  }

  .vip-benefits__cell--footer {
    height: 68px;
  }

  .vip-benefits__join {
    min-width: 124px;
    height: 36px;
    font-size: 16px;
  }

  .vip-stats-grid {
    /*grid-template-columns: 1fr;*/
    gap: 16px 0;
    margin-top: 28px;
  }

  .vip-activity__layout,
  .vip-forum__layout {
    gap: 24px;
    margin-top: 28px;
  }

  .vip-forum__copy h2 {
    line-height: 1.45;
  }

  .vip-forum .vip-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
    margin-top: 24px;
  }

  .vip-forum .vip-stat-card,
  .vip-forum .vip-stat-card:not(:first-child) {
    padding-left: 0;
  }

  .vip-stat-card strong {
    font-size: 30px;
    line-height: 1.2;
  }

  .vip-stat-card span {
    font-size: 14px;
    line-height: 1.4;
  }

  .vip-scenes__intro,
  .vip-conference__subtitle {
    width: 100%;
    font-size: 15px;
    line-height: 1.75;
    margin-top: 16px;
  }

  .vip-scenes__grid,
  .vip-conference__grid {
    gap: 12px;
    margin-top: 24px;
  }

  .vip-scene-card {
    border-radius: 12px;
  }

  .vip-scenes__more {
    width: 164px;
    height: 52px;
    margin-top: 24px;
    padding-top: 10px;
    font-size: 13px;
  }

  .vip-scenes__more::after {
    margin-left: 6px;
    font-size: 13px;
  }

  .vip-conference-card__poster-title {
    font-size: 24px;
  }

  .vip-conference .post-7 .post-7-body {
    padding: 10px 12px 12px;
  }

  .vip-conference .post-7 .post-7-body h2 {
    font-size: 14px;
    margin: 0 0 6px;
  }

  .vip-conference .post-7 .post-7-desc {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .vip-conference .post-7 .post-7-meta {
    gap: 5px;
    margin: 0 -12px 12px;
    padding: 8px 12px 0;
  }

  .vip-conference .post-7 .post-7-meta-item {
    gap: 5px;
    font-size: 11px;
  }

  .vip-conference .post-7 .post-7-end {
    width: 58px;
    bottom: 74px;
  }

  .vip-conference .post-7 .post-7-body .vip-conference-card__button {
    width: 132px;
    height: 32px;
    font-size: 14px;
  }

  .vip-footer-cta .vip-container {
    gap: 18px;
  }

  .vip-footer-cta__title {
    width: min(280px, 100%);
  }

  .vip-footer-cta__button {
    width: min(240px, 100%);
  }
}
