/* =========================================================
   FOLLOWERS STORE
   VIP MAX STRUCTURAL DESIGN
   ========================================================= */

.vipx-main {
  background: #f4f7fb;
}


/* =========================================================
   HERO
   ========================================================= */

.vipx-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 0;
  color: #fff;

  background:
    radial-gradient(
      circle at 75% 18%,
      rgba(47, 125, 255, .28),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(37, 96, 212, .15),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #050d19,
      #08172b 48%,
      #050e1c
    );
}

.vipx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .42;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255,255,255,.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.018) 1px,
      transparent 1px
    );

  background-size: 54px 54px;
}

.vipx-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, .78fr);
  gap: 78px;
  align-items: center;
  padding-bottom: 94px;
}

.vipx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 33px;
  padding: 0 13px;
  border: 1px solid rgba(112, 169, 255, .18);
  border-radius: 999px;
  color: #dce9ff;
  background: rgba(41, 105, 221, .09);
  font-size: 11px;
  font-weight: 850;
}

.vipx-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ce6ab;
  box-shadow:
    0 0 0 4px rgba(76, 230, 171, .08),
    0 0 15px rgba(76, 230, 171, .55);
}

.vipx-hero-copy h1 {
  max-width: 780px;
  margin: 23px 0 20px;
  color: #fff;
  font-size: clamp(52px, 7vw, 86px);
  line-height: .94;
  letter-spacing: -.062em;
}

.vipx-hero-copy h1 span {
  display: block;
  color: #82afff;

  background:
    linear-gradient(
      90deg,
      #6fa5ff,
      #c0d6ff
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vipx-hero-description {
  max-width: 630px;
  margin: 0;
  color: rgba(201, 214, 233, .71);
  font-size: 17px;
  line-height: 1.75;
}

.vipx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.vipx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.vipx-button-primary {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #2163df,
      #338cff
    );

  box-shadow:
    0 18px 45px
    rgba(35, 103, 226, .28);
}

.vipx-button-ghost {
  border:
    1px solid
    rgba(255, 255, 255, .12);
  color: rgba(245, 248, 252, .9);
  background: rgba(255, 255, 255, .05);
}

.vipx-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 39px;
}

.vipx-hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.vipx-hero-benefits span {
  color: #538bea;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.vipx-hero-benefits strong {
  color: rgba(226, 234, 244, .7);
  font-size: 10px;
  font-weight: 750;
}


/* =========================================================
   ORDER CONSOLE
   ========================================================= */

.vipx-console-wrap {
  position: relative;
}

.vipx-console-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  border-radius: 50%;

  transform:
    translate(-50%, -50%);

  background:
    rgba(43, 117, 242, .2);

  filter: blur(80px);
}

.vipx-console {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(150, 185, 236, .15);
  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      rgba(38, 55, 81, .77),
      rgba(15, 31, 53, .82)
    );

  box-shadow:
    0 36px 95px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.055);

  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.vipx-console::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -100px;
  right: -70px;
  border-radius: 50%;
  background: rgba(55, 132, 255, .15);
}

.vipx-console-head,
.vipx-console-head > div {
  display: flex;
  align-items: center;
}

.vipx-console-head {
  justify-content: space-between;
  gap: 14px;
}

.vipx-console-head > div {
  gap: 8px;
  color: #b9c8dc;
  font-size: 10px;
  font-weight: 750;
}

.vipx-console-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48e6a6;
  box-shadow: 0 0 11px rgba(72,230,166,.6);
}

.vipx-console-head > strong {
  padding: 5px 9px;
  border-radius: 999px;
  color: #78f0bd;
  background: rgba(72,230,166,.07);
  font-size: 9px;
}

.vipx-console-service {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 27px 0 19px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255,255,255,.085);
}

.vipx-instagram-icon {
  display: grid;
  place-items: center;
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  border-radius: 17px;
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #8055ff,
      #ed46ac,
      #ff8848
    );

  font-size: 28px;
}

.vipx-console-service small,
.vipx-console-service strong {
  display: block;
}

.vipx-console-service small {
  color: #8291a8;
  font-size: 10px;
}

.vipx-console-service strong {
  margin-top: 3px;
  color: #fff;
  font-size: 19px;
}

.vipx-console-ready {
  margin-left: auto;
  color: #6feeb9;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}

.vipx-console-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.vipx-console-data > div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}

.vipx-console-data span,
.vipx-console-data strong {
  display: block;
}

.vipx-console-data span {
  margin-bottom: 5px;
  color: #75869e;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .07em;
}

.vipx-console-data strong {
  color: #fff;
  font-size: 15px;
}

.vipx-console-progress {
  display: grid;
  grid-template-columns:
    auto 1fr auto 1fr auto;
  align-items: start;
  gap: 8px;
  margin: 24px 0 22px;
}

.vipx-console-progress > div {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #718198;
  font-size: 8px;
  font-weight: 750;
}

.vipx-console-progress b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: #9babc0;
  background: rgba(255,255,255,.04);
}

.vipx-console-progress .active {
  color: #cad7e8;
}

.vipx-console-progress .active b {
  border-color: #357eea;
  color: #fff;
  background: #2f6fed;
}

.vipx-console-progress > i {
  height: 1px;
  margin-top: 13px;
  background: rgba(255,255,255,.09);
}

.vipx-console-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 49px;
  border-radius: 13px;
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #2163df,
      #338cff
    );

  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}


/* =========================================================
   FLOATING TRUST BAR
   ========================================================= */

.vipx-trust-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  margin-bottom: -35px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 55px rgba(15,23,42,.11);
}

.vipx-trust-bar > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 21px 25px;
}

.vipx-trust-bar > div + div {
  border-left: 1px solid rgba(15,23,42,.07);
}

.vipx-trust-bar > div > span {
  color: #2f6fed;
  font-size: 9px;
  font-weight: 900;
}

.vipx-trust-bar strong,
.vipx-trust-bar small {
  display: block;
}

.vipx-trust-bar strong {
  color: #101827;
  font-size: 13px;
}

.vipx-trust-bar small {
  margin-top: 3px;
  color: #8390a3;
  font-size: 10px;
}


/* =========================================================
   PLATFORMS
   ========================================================= */

.vipx-platform-section {
  padding: 105px 0 85px;
  background:
    linear-gradient(
      180deg,
      #f5f7fb,
      #eef3fa
    );
}

.vipx-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.vipx-eyebrow {
  color: #2f6fed;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.vipx-eyebrow-dark {
  color: #6097f4;
}

.vipx-section-heading h2,
.vipx-experience-heading h2,
.vipx-reviews-heading h2,
.vipx-faq-heading h2 {
  margin: 8px 0 0;
  letter-spacing: -.05em;
}

.vipx-section-heading h2 {
  color: #101827;
  font-size: clamp(35px, 5vw, 52px);
  line-height: 1;
}

.vipx-section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #2f6fed;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.vipx-platform-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.vipx-platform {
  position: relative;
  display: grid;
  grid-template-columns:
    auto 48px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 103px;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 18px;
  color: #101827;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(15,23,42,.045);
  text-decoration: none;
}

.vipx-platform::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(47,111,237,.055);
}

.vipx-platform-number {
  align-self: start;
  color: #b6bfcc;
  font-size: 8px;
  font-weight: 900;
}

.vipx-platform-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px;
  background: #f7f9fc;
}

.vipx-platform-copy strong,
.vipx-platform-copy span {
  display: block;
}

.vipx-platform-copy strong {
  font-size: 14px;
}

.vipx-platform-copy span {
  margin-top: 4px;
  color: #8793a5;
  font-size: 9px;
}

.vipx-platform-go {
  position: relative;
  z-index: 2;
  color: #2f6fed;
  font-size: 17px;
}


/* =========================================================
   TIMELINE
   ========================================================= */

.vipx-experience {
  position: relative;
  padding: 93px 0;
  color: #fff;

  background:
    radial-gradient(
      circle at 60% 0,
      rgba(44,108,224,.16),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      #07111f,
      #0b1830
    );
}

.vipx-experience-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.vipx-experience-heading h2 {
  color: #fff;
  font-size: clamp(39px, 5.5vw, 60px);
  line-height: .98;
}

.vipx-experience-heading > p {
  max-width: 550px;
  margin: 17px 0 0;
  color: rgba(187,201,221,.65);
  font-size: 13px;
  line-height: 1.65;
}

.vipx-timeline {
  max-width: 880px;
}

.vipx-timeline article {
  display: grid;
  grid-template-columns:
    65px 40px minmax(0,1fr);
  gap: 20px;
}

.vipx-timeline-number {
  padding-top: 7px;
  color: #6095ee;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.vipx-timeline-line {
  position: relative;
  display: flex;
  justify-content: center;
}

.vipx-timeline-line::after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  width: 1px;
  background:
    linear-gradient(
      #3776dd,
      rgba(55,118,221,.13)
    );
}

.vipx-timeline-line.last::after {
  display: none;
}

.vipx-timeline-line i {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin-top: 5px;
  border: 4px solid #0c1830;
  border-radius: 50%;
  background: #4386f4;
  box-shadow: 0 0 0 1px rgba(86,145,243,.4);
}

.vipx-timeline-content {
  margin-bottom: 35px;
  padding: 25px 26px;
  border: 1px solid rgba(148,177,219,.11);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.025)
    );
}

.vipx-timeline-label {
  color: #6096f0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.vipx-timeline-content h3 {
  margin: 8px 0 9px;
  color: #fff;
  font-size: 21px;
}

.vipx-timeline-content p {
  margin: 0;
  color: rgba(187,201,220,.66);
  font-size: 12px;
  line-height: 1.65;
}

.vipx-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.vipx-mini-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  color: rgba(221,228,239,.72);
  background: rgba(255,255,255,.035);
  font-size: 8px;
  font-weight: 750;
}

.vipx-experience-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 9px;
  padding: 21px 23px;
  border: 1px solid rgba(148,177,219,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.vipx-experience-bottom strong,
.vipx-experience-bottom span {
  display: block;
}

.vipx-experience-bottom strong {
  color: #fff;
  font-size: 13px;
}

.vipx-experience-bottom span {
  margin-top: 3px;
  color: #8493aa;
  font-size: 10px;
}

.vipx-experience-bottom a {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 11px;
  color: #fff;
  background: #2f6fed;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}


/* =========================================================
   BENTO
   ========================================================= */

.vipx-bento-section {
  padding: 91px 0;
  background:
    linear-gradient(
      180deg,
      #f3f6fb,
      #eef3f9
    );
}

.vipx-bento {
  display: grid;
  grid-template-columns:
    1.25fr .75fr;
  grid-template-rows:
    repeat(2, minmax(190px, auto));
  gap: 14px;
}

.vipx-bento article {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border-radius: 21px;
}

.vipx-bento-main {
  grid-row: 1 / 3;
  min-height: 430px;
  border: 1px solid rgba(89,148,242,.16);
  color: #fff;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(54,133,255,.23),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      #07111f,
      #0d1c35
    );

  box-shadow:
    0 25px 65px
    rgba(15,23,42,.15);
}

.vipx-bento-small {
  border: 1px solid rgba(15,23,42,.075);
  background: #fff;
}

.vipx-bento-blue {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #2264df,
      #3289ff
    );
}

.vipx-bento-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(105,163,255,.17);
  border-radius: 13px;
  color: #6da3ff;
  background: rgba(47,111,237,.075);
  font-size: 18px;
}

.vipx-bento-blue .vipx-bento-icon,
.vipx-bento-main .vipx-bento-icon {
  border-color: rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.vipx-bento-index {
  display: block;
  margin-top: 40px;
  color: #729dee;
  font-size: 9px;
  font-weight: 900;
}

.vipx-bento-small .vipx-bento-index {
  margin-top: 25px;
}

.vipx-bento h3 {
  margin: 8px 0 10px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.vipx-bento-main h3 {
  max-width: 400px;
  font-size: 39px;
  line-height: 1;
}

.vipx-bento p {
  max-width: 480px;
  margin: 0;
  color: #758299;
  font-size: 12px;
  line-height: 1.7;
}

.vipx-bento-main p,
.vipx-bento-blue p {
  color: rgba(221,230,242,.7);
}

.vipx-bento-decoration {
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: rgba(107,159,247,.42);
  font-size: 80px;
  line-height: 1;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.vipx-reviews {
  padding: 92px 0;
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #070f1c,
      #0a172b
    );
}

.vipx-reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 33px;
}

.vipx-reviews-heading h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(38px, 5.5vw, 57px);
  line-height: .98;
}

.vipx-reviews-heading > p {
  max-width: 330px;
  margin: 0;
  color: #8190a7;
  font-size: 11px;
  line-height: 1.6;
}

.vipx-review-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 3px 1px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vipx-review-track::-webkit-scrollbar {
  display: none;
}

.vipx-review {
  flex: 0 0 min(360px, 86vw);
  min-height: 260px;
  padding: 23px;
  border: 1px solid rgba(142,174,219,.12);
  border-radius: 19px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.025)
    );

  scroll-snap-align: start;
}

.vipx-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vipx-review-stars {
  color: #ffc02c;
  font-size: 14px;
  letter-spacing: 2px;
}

.vipx-review-top > span {
  color: #62d9a7;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}

.vipx-review > p {
  min-height: 105px;
  margin: 26px 0;
  color: rgba(228,235,244,.82);
  font-size: 13px;
  line-height: 1.75;
}

.vipx-review-person {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.vipx-review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: #2f6fed;
  font-size: 13px;
  font-weight: 850;
}

.vipx-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vipx-review-person strong,
.vipx-review-person span {
  display: block;
}

.vipx-review-person strong {
  color: #fff;
  font-size: 12px;
}

.vipx-review-person span {
  margin-top: 3px;
  color: #718096;
  font-size: 9px;
}


/* =========================================================
   CTA
   ========================================================= */

.vipx-cta {
  padding: 80px 0;
  background: #eef3f9;
}

.vipx-cta-card {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0,1fr)
    auto;
  align-items: center;
  gap: 45px;
  overflow: hidden;
  padding: 48px 52px;
  border-radius: 25px;
  color: #fff;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255,255,255,.13),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #2162df,
      #3189ff
    );

  box-shadow:
    0 25px 65px
    rgba(35, 104, 229, .2);
}

.vipx-cta-card h2 {
  margin: 9px 0 11px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -.05em;
}

.vipx-cta-card p {
  max-width: 600px;
  margin: 0;
  color: rgba(237,244,255,.77);
  font-size: 12px;
  line-height: 1.65;
}

.vipx-cta-card > a {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(7,19,40,.19);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}


/* =========================================================
   FAQ
   ========================================================= */

.vipx-faq {
  padding: 90px 0 100px;
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #07111f,
      #09172a
    );
}

.vipx-faq-shell {
  display: grid;
  grid-template-columns:
    minmax(250px, .7fr)
    minmax(0, 1.3fr);
  gap: 75px;
}

.vipx-faq-heading {
  position: sticky;
  top: 100px;
  align-self: start;
}

.vipx-faq-heading h2 {
  color: #fff;
  font-size: clamp(37px, 5vw, 53px);
  line-height: .98;
}

.vipx-faq-heading p {
  margin: 15px 0 0;
  color: #8090a6;
  font-size: 12px;
  line-height: 1.65;
}

.vipx-faq-list {
  display: grid;
  gap: 9px;
}

.vipx-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(146,177,220,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.vipx-faq-list summary {
  display: grid;
  grid-template-columns:
    35px minmax(0,1fr) 25px;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
}

.vipx-faq-list summary::-webkit-details-marker {
  display: none;
}

.vipx-faq-list summary > span {
  color: #568ce8;
  font-size: 8px;
  font-weight: 900;
}

.vipx-faq-list summary strong {
  color: #edf3fb;
  font-size: 12px;
}

.vipx-faq-list summary b {
  color: #6097f2;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.vipx-faq-list details[open] summary b {
  transform: rotate(45deg);
}

.vipx-faq-list details > p {
  margin: 0;
  padding: 0 55px 20px 65px;
  color: #8291a7;
  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   VIP MAX - MOBILE LAYOUT FIX
   iPhone / small tablet
   ========================================================= */

@media screen and (max-width: 1000px) {

  /* -----------------------------------------------
     HERO
     ----------------------------------------------- */

  .vipx-hero {
    min-height: 0 !important;
    padding: 48px 0 0 !important;
  }

  .vipx-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;

    width: 100% !important;

    gap: 34px !important;

    padding-bottom: 58px !important;
  }

  .vipx-hero-copy {
    width: 100% !important;
    max-width: 100% !important;

    min-width: 0 !important;

    text-align: center;
  }

  .vipx-kicker {
    width: fit-content !important;

    max-width: 100%;

    margin: 0 auto !important;

    white-space: normal;
  }

  .vipx-hero-copy h1 {
    width: 100% !important;
    max-width: 620px !important;

    margin:
      20px auto 16px !important;

    font-size:
      clamp(
        40px,
        11vw,
        58px
      ) !important;

    line-height: .96 !important;

    text-align: center;

    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .vipx-hero-copy h1 span {
    display: block;
  }

  .vipx-hero-description {
    width: 100% !important;
    max-width: 520px !important;

    margin: 0 auto !important;

    font-size: 14px !important;
    line-height: 1.65 !important;

    text-align: center;

    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .vipx-hero-actions {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr) !important;

    width: 100%;

    max-width: 500px;

    margin:
      25px auto 0 !important;
  }

  .vipx-button {
    width: 100% !important;
  }

  .vipx-hero-benefits {
    justify-content: center !important;

    width: 100%;

    margin-top: 25px !important;
  }


  /* -----------------------------------------------
     ORDER CONSOLE
     ----------------------------------------------- */

  .vipx-console-wrap {
    width: 100% !important;

    max-width: 580px;

    margin: 0 auto;
  }

  .vipx-console {
    width: 100% !important;

    max-width: 100% !important;

    margin: 0 auto !important;

    padding: 20px !important;

    border-radius: 21px !important;
  }


  /* -----------------------------------------------
     TRUST BAR
     ----------------------------------------------- */

  .vipx-trust-bar {
    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

    width:
      calc(100% - 28px) !important;

    margin:
      0 auto -26px !important;
  }

  .vipx-trust-bar > div {
    min-width: 0;

    padding:
      15px 10px !important;

    justify-content: center;
  }

  .vipx-trust-bar small {
    font-size: 9px;
  }


  /* -----------------------------------------------
     PLATFORM GRID
     ----------------------------------------------- */

  .vipx-platform-section {
    padding:
      78px 0 58px !important;
  }

  .vipx-section-heading {
    align-items: flex-start !important;

    gap: 15px !important;
  }

  .vipx-section-heading h2 {
    font-size: 32px !important;
  }

  .vipx-platform-grid {
    display: grid !important;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      ) !important;

    gap: 9px !important;

    width: 100% !important;
  }

  .vipx-platform {
    display: grid !important;

    grid-template-columns:
      42px minmax(0, 1fr) 18px !important;

    grid-template-rows:
      auto auto !important;

    width: 100% !important;

    min-width: 0 !important;

    min-height: 105px !important;

    padding: 13px !important;

    gap:
      8px 10px !important;

    border-radius: 15px !important;
  }

  .vipx-platform-number {
    position: absolute;

    top: 9px;
    right: 11px;
  }

  .vipx-platform-icon {
    grid-column: 1;
    grid-row: 1 / 3;

    width: 42px !important;
    height: 42px !important;
  }

  .vipx-platform-copy {
    grid-column: 2;
    grid-row: 1 / 3;

    min-width: 0;
  }

  .vipx-platform-copy strong {
    font-size: 12px !important;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
  }

  .vipx-platform-copy span {
    font-size: 9px !important;
  }

  .vipx-platform-go {
    grid-column: 3;
    grid-row: 1 / 3;

    align-self: center;
  }


  /* -----------------------------------------------
     HOW IT WORKS TIMELINE
     ----------------------------------------------- */

  .vipx-experience {
    padding:
      62px 0 !important;
  }

  .vipx-experience-heading {
    max-width: 100% !important;

    margin-bottom: 31px !important;
  }

  .vipx-experience-heading h2 {
    font-size: 36px !important;

    line-height: 1 !important;
  }

  .vipx-timeline {
    width: 100% !important;
  }

  .vipx-timeline article {
    display: grid !important;

    grid-template-columns:
      26px
      minmax(0, 1fr) !important;

    gap: 11px !important;

    width: 100%;
  }

  .vipx-timeline-number {
    display: none !important;
  }

  .vipx-timeline-line {
    grid-column: 1 !important;

    width: 26px;
  }

  .vipx-timeline-content {
    grid-column: 2 !important;

    width: 100% !important;

    min-width: 0 !important;

    margin-bottom: 13px !important;

    padding: 19px !important;

    border-radius: 16px !important;
  }

  .vipx-timeline-content h3 {
    font-size: 18px !important;
  }

  .vipx-experience-bottom {
    display: grid !important;

    grid-template-columns:
      1fr !important;
  }


  /* -----------------------------------------------
     WHY US BENTO
     ----------------------------------------------- */

  .vipx-bento {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr) !important;

    grid-template-rows:
      auto !important;

    gap: 11px !important;

    width: 100% !important;
  }

  .vipx-bento article {
    grid-column: auto !important;
    grid-row: auto !important;

    width: 100% !important;

    min-width: 0 !important;

    min-height: 0 !important;

    padding: 22px !important;

    border-radius: 18px !important;
  }

  .vipx-bento-main {
    min-height: 280px !important;
  }

  .vipx-bento-small {
    min-height: 190px !important;
  }

  .vipx-bento-main h3 {
    max-width: 100%;

    font-size: 32px !important;

    line-height: 1.02 !important;
  }

  .vipx-bento-small h3 {
    font-size: 21px !important;
  }

  .vipx-bento-decoration {
    right: 22px !important;
    bottom: 17px !important;

    font-size: 58px !important;
  }


  /* -----------------------------------------------
     REVIEWS
     ----------------------------------------------- */

  .vipx-reviews-heading {
    display: grid !important;

    grid-template-columns:
      1fr !important;

    gap: 10px !important;
  }

  .vipx-reviews-heading h2 {
    font-size: 36px !important;
  }

  .vipx-review {
    flex:
      0 0
      min(
        88%,
        360px
      ) !important;
  }


  /* -----------------------------------------------
     CTA
     ----------------------------------------------- */

  .vipx-cta-card {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr) !important;

    gap: 23px !important;

    padding:
      33px 22px !important;
  }

  .vipx-cta-card h2 {
    font-size: 34px !important;
  }


  /* -----------------------------------------------
     FAQ
     ----------------------------------------------- */

  .vipx-faq-shell {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr) !important;

    gap: 29px !important;
  }

  .vipx-faq-heading {
    position: static !important;
  }

  .vipx-faq-heading h2 {
    font-size: 35px !important;
  }

}


/* =========================================================
   SMALL IPHONE
   ========================================================= */

@media screen and (max-width: 520px) {

  .vipx-hero-copy h1 {
    font-size:
      clamp(
        38px,
        12vw,
        50px
      ) !important;
  }

  .vipx-trust-bar {
    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      ) !important;
  }

  .vipx-trust-bar > div {
    display: grid;

    justify-items: center;

    text-align: center;

    gap: 4px;
  }

  .vipx-trust-bar > div > span {
    font-size: 8px;
  }

  .vipx-trust-bar strong {
    font-size: 10px;
  }

  .vipx-trust-bar small {
    font-size: 8px;
  }

}


/* =========================================================
   VIP MAX - FAQ SPECIFICITY FIX
   Overrides legacy #faq homepage styles
   ========================================================= */

.landing-body #faq.vipx-faq {
  position: relative !important;

  padding:
    90px 0 100px !important;

  color: #fff !important;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(47, 111, 237, .14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #06101d 0%,
      #09172a 55%,
      #071220 100%
    ) !important;
}


/* Heading */

.landing-body
#faq.vipx-faq
.vipx-faq-heading {
  color: #fff !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-heading
.vipx-eyebrow {
  color: #609cff !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-heading h2 {
  color: #fff !important;

  opacity: 1 !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-heading p {
  color:
    rgba(194, 207, 226, .68) !important;

  opacity: 1 !important;
}


/* FAQ rows */

.landing-body
#faq.vipx-faq
.vipx-faq-list {
  display: grid !important;

  gap: 10px !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-list details {
  overflow: hidden !important;

  border:
    1px solid
    rgba(148, 177, 219, .14) !important;

  border-radius:
    16px !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .025)
    ) !important;

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, .025) !important;
}


/* Question */

.landing-body
#faq.vipx-faq
.vipx-faq-list summary {
  display: grid !important;

  grid-template-columns:
    34px
    minmax(0, 1fr)
    26px !important;

  align-items: center !important;

  gap: 12px !important;

  min-height: 70px !important;

  padding:
    0 18px !important;

  color: #fff !important;

  background: transparent !important;

  cursor: pointer !important;

  list-style: none !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-list summary::-webkit-details-marker {
  display: none !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-list summary > span {
  color: #5f96ef !important;

  font-size: 9px !important;

  font-weight: 900 !important;

  letter-spacing: .08em !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-list summary strong {
  color:
    rgba(241, 246, 252, .94) !important;

  font-size: 13px !important;

  font-weight: 800 !important;

  opacity: 1 !important;
}


/* Plus */

.landing-body
#faq.vipx-faq
.vipx-faq-list summary b {
  display: grid !important;

  place-items: center !important;

  width: 26px !important;
  height: 26px !important;

  border:
    1px solid
    rgba(96, 156, 255, .16) !important;

  border-radius: 8px !important;

  color: #6da5ff !important;

  background:
    rgba(47, 111, 237, .08) !important;

  font-size: 18px !important;

  font-weight: 400 !important;

  line-height: 1 !important;

  transition:
    transform .18s ease !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-list details[open]
summary b {
  transform:
    rotate(45deg) !important;
}


/* Open answer */

.landing-body
#faq.vipx-faq
.vipx-faq-list details[open] {
  border-color:
    rgba(73, 137, 240, .28) !important;

  background:
    linear-gradient(
      145deg,
      rgba(47, 111, 237, .09),
      rgba(255, 255, 255, .03)
    ) !important;
}


.landing-body
#faq.vipx-faq
.vipx-faq-list details > p {
  margin: 0 !important;

  padding:
    0 55px 21px 64px !important;

  color:
    rgba(186, 200, 220, .72) !important;

  background: transparent !important;

  font-size: 12px !important;

  line-height: 1.7 !important;

  opacity: 1 !important;
}


/* =========================================================
   FAQ MOBILE
   ========================================================= */

@media screen and (max-width: 640px) {

  .landing-body
  #faq.vipx-faq {
    padding:
      60px 0 68px !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-shell {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr) !important;

    gap: 27px !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-heading {
    position: static !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-heading h2 {
    margin-top: 8px !important;

    font-size: 34px !important;

    line-height: 1 !important;

    letter-spacing: -.045em !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-heading p {
    margin-top: 12px !important;

    font-size: 12px !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-list summary {
    grid-template-columns:
      27px
      minmax(0, 1fr)
      24px !important;

    min-height: 62px !important;

    padding:
      0 14px !important;

    gap: 9px !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-list summary strong {
    font-size: 12px !important;

    line-height: 1.35 !important;
  }


  .landing-body
  #faq.vipx-faq
  .vipx-faq-list details > p {
    padding:
      0 15px 18px 50px !important;

    font-size: 11px !important;
  }

}


/* =========================================================
   VIP MAX - COMPACT WHY US BENTO
   ========================================================= */

@media screen and (max-width: 640px) {

  .vipx-bento-section {
    padding:
      54px 0 58px !important;
  }


  .vipx-bento {
    gap: 10px !important;
  }


  .vipx-bento article {
    padding:
      18px !important;

    border-radius:
      17px !important;
  }


  /* QUICK TO ORDER */

  .vipx-bento-main {
    min-height:
      225px !important;
  }


  .vipx-bento-main
  .vipx-bento-icon {
    width: 42px;
    height: 42px;
  }


  .vipx-bento-main
  .vipx-bento-index {
    margin-top:
      24px !important;
  }


  .vipx-bento-main h3 {
    margin:
      7px 0 8px !important;

    font-size:
      29px !important;

    line-height:
      1 !important;
  }


  .vipx-bento-main p {
    max-width:
      calc(100% - 45px);

    font-size:
      12px !important;

    line-height:
      1.55 !important;
  }


  /* Smaller decorative arrow */

  .vipx-bento-decoration {
    right:
      17px !important;

    bottom:
      15px !important;

    font-size:
      39px !important;

    opacity:
      .58;
  }


  /* WHITE + BLUE CARDS */

  .vipx-bento-small {
    min-height:
      155px !important;
  }


  .vipx-bento-small
  .vipx-bento-icon {
    width: 40px;
    height: 40px;
  }


  .vipx-bento-small
  .vipx-bento-index {
    margin-top:
      15px !important;
  }


  .vipx-bento-small h3 {
    margin:
      6px 0 7px !important;

    font-size:
      20px !important;

    line-height:
      1.1 !important;
  }


  .vipx-bento-small p {
    font-size:
      11px !important;

    line-height:
      1.55 !important;
  }

}
