@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

.rbv-premium-wrap,
.rbv-premium-wrap * {
  box-sizing: border-box;
}

.rbv-premium-wrap {
  --rbv-ink: #1f2430;
  --rbv-muted: #667085;
  --rbv-line: rgba(31, 36, 48, 0.1);
  --rbv-grad-a: #ff5a3d;
  --rbv-grad-b: #b344ff;
  --rbv-grad-c: #ffb347;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--rbv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rbv-premium-wrap .rbv-premium-section {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 92px 22px;
  overflow: hidden;
}

.rbv-premium-wrap .rbv-premium-section-white {
  background: #fff;
}

.rbv-premium-wrap .rbv-premium-section-warm {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 90, 61, 0.12), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(179, 68, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #fff7f1 0%, #fffdf8 54%, #fff7fb 100%);
}

.rbv-premium-wrap .rbv-premium-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.rbv-premium-wrap .rbv-premium-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.rbv-premium-wrap .rbv-premium-heading h2 {
  margin: 0;
  color: var(--rbv-ink);
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.12;
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-wrap .rbv-premium-heading h2 span {
  background: linear-gradient(135deg, var(--rbv-grad-a), var(--rbv-grad-b) 58%, var(--rbv-grad-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rbv-premium-wrap .rbv-premium-heading p {
  margin: 14px auto 0;
  color: var(--rbv-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 670px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-wrap .rbv-premium-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.rbv-premium-wrap .rbv-premium-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rbv-card-a: #ff6b4a;
  --rbv-card-b: #7c5cff;
  --rbv-card-soft: rgba(255, 107, 74, 0.11);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 255px;
  padding: 26px;
  border: 1px solid rgba(31, 36, 48, 0.09);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), var(--rbv-card-soft));
  box-shadow: 0 18px 44px rgba(31, 36, 48, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(20px);
  opacity: 0;
  overflow: hidden;
  transition: transform 280ms ease, opacity 620ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
  will-change: transform;
}

.rbv-premium-wrap .rbv-premium-card:nth-child(2) { --rbv-card-a: #2f80ed; --rbv-card-b: #56ccf2; --rbv-card-soft: rgba(47, 128, 237, 0.1); }
.rbv-premium-wrap .rbv-premium-card:nth-child(3) { --rbv-card-a: #9b51e0; --rbv-card-b: #ff6ec7; --rbv-card-soft: rgba(155, 81, 224, 0.1); }
.rbv-premium-wrap .rbv-premium-card:nth-child(4) { --rbv-card-a: #00a884; --rbv-card-b: #7bd88f; --rbv-card-soft: rgba(0, 168, 132, 0.1); }
.rbv-premium-wrap .rbv-premium-card:nth-child(5) { --rbv-card-a: #f2994a; --rbv-card-b: #f2c94c; --rbv-card-soft: rgba(242, 153, 74, 0.12); }
.rbv-premium-wrap .rbv-premium-card:nth-child(6) { --rbv-card-a: #eb5757; --rbv-card-b: #ff8a65; --rbv-card-soft: rgba(235, 87, 87, 0.1); }
.rbv-premium-wrap .rbv-premium-card:nth-child(7) { --rbv-card-a: #14b8a6; --rbv-card-b: #38bdf8; --rbv-card-soft: rgba(20, 184, 166, 0.1); }
.rbv-premium-wrap .rbv-premium-card:nth-child(8) { --rbv-card-a: #5b6ee1; --rbv-card-b: #b85cff; --rbv-card-soft: rgba(91, 110, 225, 0.1); }

.rbv-premium-wrap .rbv-premium-card.rbv-is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.rbv-premium-wrap .rbv-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.68), transparent 34%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.rbv-premium-wrap .rbv-premium-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--rbv-card-a), var(--rbv-card-b));
  opacity: 0.8;
}

.rbv-premium-wrap .rbv-premium-card:hover {
  border-color: color-mix(in srgb, var(--rbv-card-a) 38%, rgba(31, 36, 48, 0.12));
  box-shadow: 0 24px 68px rgba(31, 36, 48, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-6px);
}

.rbv-premium-wrap .rbv-premium-card:hover::before {
  opacity: 1;
}

.rbv-premium-wrap .rbv-premium-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--rbv-card-a);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--rbv-card-soft));
  box-shadow: inset 0 0 0 1px rgba(31, 36, 48, 0.08), 0 12px 28px rgba(31, 36, 48, 0.08);
  transition: transform 280ms ease, color 280ms ease, background 280ms ease;
}

.rbv-premium-wrap .rbv-premium-icon i {
  font-size: 1.28rem;
  line-height: 1;
}

.rbv-premium-wrap .rbv-premium-card:hover .rbv-premium-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--rbv-card-a), var(--rbv-card-b));
  transform: translateY(-3px) rotate(-3deg) scale(1.04);
}

.rbv-premium-wrap .rbv-premium-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--rbv-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-wrap .rbv-premium-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rbv-card-a), var(--rbv-card-b));
  transition: width 260ms ease;
}

.rbv-premium-wrap .rbv-premium-card:hover h3::after {
  width: 74px;
}

.rbv-premium-wrap .rbv-premium-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--rbv-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-wrap .rbv-premium-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rbv-card-a);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.4;
  opacity: 0.3;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease, color 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-wrap .rbv-premium-card:hover .rbv-premium-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--rbv-card-b);
}

.rbv-premium-wrap .rbv-premium-process-card {
  isolation: isolate;
}

.rbv-premium-wrap .rbv-premium-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: -1;
  color: var(--rbv-card-a);
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  opacity: 0.08;
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.rbv-premium-wrap .rbv-premium-process-card:hover::before {
  opacity: 0.15;
  transform: translateY(-4px) scale(1.04);
}

.rbv-premium-wrap .rbv-premium-step {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--rbv-card-a);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .rbv-premium-wrap .rbv-premium-section {
    padding: 96px 28px;
  }

  .rbv-premium-wrap .rbv-premium-container {
    max-width: 1240px;
  }

  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .rbv-premium-wrap .rbv-premium-section {
    padding: 82px 24px;
  }

  .rbv-premium-wrap .rbv-premium-container {
    max-width: 1020px;
  }

  .rbv-premium-wrap .rbv-premium-heading p {
    font-size: 1rem;
  }

  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .rbv-premium-wrap .rbv-premium-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rbv-premium-wrap .rbv-premium-section {
    padding: 70px 20px;
  }

  .rbv-premium-wrap .rbv-premium-heading {
    margin-bottom: 34px;
  }

  .rbv-premium-wrap .rbv-premium-heading p {
    font-size: 0.98rem;
  }

  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .rbv-premium-wrap .rbv-premium-card {
    padding: 22px;
  }

  .rbv-premium-wrap .rbv-premium-card h3 {
    font-size: 1.02rem;
  }

  .rbv-premium-wrap .rbv-premium-card p {
    font-size: 0.92rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rbv-premium-wrap .rbv-premium-section {
    padding: 56px 16px;
  }

  .rbv-premium-wrap .rbv-premium-heading {
    margin-bottom: 28px;
  }

  .rbv-premium-wrap .rbv-premium-heading p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .rbv-premium-wrap .rbv-premium-card {
    min-height: 0;
    padding: 21px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rbv-premium-wrap .rbv-premium-section {
    padding: 50px 14px;
  }

  .rbv-premium-wrap .rbv-premium-heading {
    margin-bottom: 24px;
  }

  .rbv-premium-wrap .rbv-premium-heading p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .rbv-premium-wrap .rbv-premium-card {
    min-height: 0;
    padding: 19px;
    border-radius: 16px;
  }

  .rbv-premium-wrap .rbv-premium-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .rbv-premium-wrap .rbv-premium-icon i {
    font-size: 1.12rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rbv-premium-wrap .rbv-premium-section {
    padding: 44px 12px;
  }

  .rbv-premium-wrap .rbv-premium-heading {
    margin-bottom: 22px;
  }

  .rbv-premium-wrap .rbv-premium-heading p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .rbv-premium-wrap .rbv-premium-card {
    min-height: 0;
    padding: 17px;
    border-radius: 15px;
  }

  .rbv-premium-wrap .rbv-premium-card h3 {
    font-size: 0.98rem;
  }

  .rbv-premium-wrap .rbv-premium-card p,
  .rbv-premium-wrap .rbv-premium-cta {
    font-size: 0.86rem;
  }

  .rbv-premium-wrap .rbv-premium-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 16px;
  }

  .rbv-premium-wrap .rbv-premium-icon i {
    font-size: 1rem;
  }

  .rbv-premium-wrap .rbv-premium-process-card::before {
    font-size: 3.8rem;
    right: 12px;
  }
}

@media (max-width: 319px) {
  .rbv-premium-wrap .rbv-premium-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rbv-premium-wrap .rbv-premium-card,
  .rbv-premium-wrap .rbv-premium-card::before,
  .rbv-premium-wrap .rbv-premium-card::after,
  .rbv-premium-wrap .rbv-premium-icon,
  .rbv-premium-wrap .rbv-premium-cta,
  .rbv-premium-wrap .rbv-premium-card h3::after {
    transition: none !important;
    animation: none !important;
  }

  .rbv-premium-wrap .rbv-premium-card,
  .rbv-premium-wrap .rbv-premium-card.rbv-is-visible,
  .rbv-premium-wrap .rbv-premium-card:hover {
    transform: none !important;
  }
}