@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-content,
.rbv-premium-content * {
  box-sizing: border-box;
}

.rbv-premium-content {
  --rbv-ink: #231f20;
  --rbv-muted: #6d6463;
  --rbv-line: rgba(130, 75, 54, 0.16);
  --rbv-orange: #ff4500;
  --rbv-coral: #ff6f3c;
  --rbv-gold: #f4b34e;
  --rbv-plum: #7a3e68;
  --rbv-cream: #fff7f1;
  --rbv-soft: #fffaf6;
  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;
  line-height: 1.5;
}

.rbv-premium-content .rbv-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

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

.rbv-premium-content .rbv-section-warm {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 69, 0, 0.1), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(244, 179, 78, 0.16), transparent 34%),
    linear-gradient(180deg, #fff8f2 0%, #fff2e8 100%);
}

.rbv-premium-content .rbv-container {
  width: min(1320px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
  padding: 92px 0;
}

.rbv-premium-content .rbv-heading-wrap {
  width: min(760px, 100%);
  max-width: 100%;
  margin: 0 auto 38px;
  text-align: center;
}

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

.rbv-premium-content .rbv-heading-wrap h2 span {
  color: transparent;
  background: linear-gradient(110deg, var(--rbv-orange), var(--rbv-coral), var(--rbv-plum));
  -webkit-background-clip: text;
  background-clip: text;
}

.rbv-premium-content .rbv-heading-wrap p {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--rbv-muted);
  font-size: 1.03rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rbv-premium-content .rbv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rbv-card-a: #ff4500;
  --rbv-card-b: #ff8a4c;
  --rbv-card-c: rgba(255, 69, 0, 0.1);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--rbv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 18px 45px rgba(90, 47, 31, 0.08);
  overflow: hidden;
  transform: translateY(24px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.rbv-premium-content .rbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--rbv-card-c), transparent 46%),
    radial-gradient(circle at 85% 18%, color-mix(in srgb, var(--rbv-card-b) 18%, transparent), transparent 34%);
  opacity: 0.74;
  pointer-events: none;
}

.rbv-premium-content .rbv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--rbv-card-a), var(--rbv-card-b));
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0.54;
  transition: transform 260ms ease, opacity 260ms ease;
}

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

.rbv-premium-content .rbv-card:hover {
  border-color: color-mix(in srgb, var(--rbv-card-a) 42%, transparent);
  box-shadow: 0 24px 64px rgba(90, 47, 31, 0.15);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

.rbv-premium-content .rbv-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.rbv-premium-content .rbv-icon,
.rbv-premium-content .rbv-step-number,
.rbv-premium-content .rbv-card h3,
.rbv-premium-content .rbv-card p,
.rbv-premium-content .rbv-card-cta {
  position: relative;
  z-index: 1;
}

.rbv-premium-content .rbv-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--rbv-card-a);
  background: color-mix(in srgb, var(--rbv-card-a) 11%, #ffffff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rbv-card-a) 18%, transparent);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

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

.rbv-premium-content .rbv-card:hover .rbv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--rbv-card-a), var(--rbv-card-b));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--rbv-card-a) 22%, transparent);
  transform: translateY(-3px) rotate(-4deg) scale(1.04);
}

.rbv-premium-content .rbv-card h3 {
  display: inline;
  margin: 0;
  color: var(--rbv-ink);
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--rbv-card-a), var(--rbv-card-b));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 260ms ease, color 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-content .rbv-card:hover h3 {
  background-size: 100% 2px;
}

.rbv-premium-content .rbv-card p {
  margin: 14px 0 0;
  color: var(--rbv-muted);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-content .rbv-card-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rbv-card-a);
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-content .rbv-card:hover .rbv-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.rbv-premium-content .rbv-tilt-card {
  transition:
    opacity 620ms ease,
    transform 180ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.rbv-premium-content .rbv-process-card {
  padding-top: 24px;
}

.rbv-premium-content .rbv-process-card::before {
  content: var(--rbv-step);
  position: absolute;
  right: 16px;
  top: 8px;
  color: color-mix(in srgb, var(--rbv-card-a) 11%, transparent);
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.rbv-premium-content .rbv-step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rbv-card-a);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 260ms ease, color 260ms ease;
}

.rbv-premium-content .rbv-process-card:hover::before {
  transform: translateY(-5px) scale(1.04);
  opacity: 0.95;
}

.rbv-premium-content .rbv-process-card:hover .rbv-step-number {
  color: var(--rbv-card-b);
  transform: translateX(4px);
}

.rbv-premium-content .rbv-card:nth-child(8n+1) { --rbv-card-a: #ff4500; --rbv-card-b: #ff7a45; --rbv-card-c: rgba(255, 69, 0, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+2) { --rbv-card-a: #c84d2f; --rbv-card-b: #f2a45d; --rbv-card-c: rgba(200, 77, 47, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+3) { --rbv-card-a: #8d4e8f; --rbv-card-b: #e06b73; --rbv-card-c: rgba(141, 78, 143, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+4) { --rbv-card-a: #287c78; --rbv-card-b: #69b99d; --rbv-card-c: rgba(40, 124, 120, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+5) { --rbv-card-a: #b65f16; --rbv-card-b: #efb14a; --rbv-card-c: rgba(182, 95, 22, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+6) { --rbv-card-a: #4d65a6; --rbv-card-b: #79a7df; --rbv-card-c: rgba(77, 101, 166, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+7) { --rbv-card-a: #9f315f; --rbv-card-b: #e36f8a; --rbv-card-c: rgba(159, 49, 95, 0.1); }
.rbv-premium-content .rbv-card:nth-child(8n+8) { --rbv-card-a: #5d6f2f; --rbv-card-b: #b5a84b; --rbv-card-c: rgba(93, 111, 47, 0.1); }

@media (min-width: 1200px) {
  .rbv-premium-content .rbv-container {
    width: min(1320px, calc(100% - 64px));
    padding: 96px 0;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .rbv-premium-content .rbv-container {
    width: min(1060px, calc(100% - 44px));
    padding: 82px 0;
  }

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

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .rbv-premium-content .rbv-container {
    width: min(820px, calc(100% - 36px));
    padding: 68px 0;
  }

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

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

  .rbv-premium-content .rbv-card {
    min-height: 235px;
    padding: 22px;
  }

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

  .rbv-premium-content .rbv-card p {
    font-size: 0.93rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rbv-premium-content .rbv-container {
    width: min(100%, calc(100% - 28px));
    padding: 54px 0;
  }

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

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

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

  .rbv-premium-content .rbv-card {
    min-height: auto;
    padding: 21px;
    border-radius: 18px;
  }

  .rbv-premium-content .rbv-card-cta {
    opacity: 0.75;
    transform: none;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rbv-premium-content .rbv-container {
    width: min(100%, calc(100% - 24px));
    padding: 48px 0;
  }

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

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

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

  .rbv-premium-content .rbv-card {
    min-height: auto;
    padding: 18px;
    border-radius: 17px;
  }

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

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

  .rbv-premium-content .rbv-card p {
    font-size: 0.9rem;
  }

  .rbv-premium-content .rbv-process-card::before {
    font-size: 4.4rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rbv-premium-content .rbv-container {
    width: min(100%, calc(100% - 20px));
    padding: 42px 0;
  }

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

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

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

  .rbv-premium-content .rbv-card {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
  }

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

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

  .rbv-premium-content .rbv-card h3 {
    font-size: 0.94rem;
  }

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

  .rbv-premium-content .rbv-process-card::before {
    right: 10px;
    top: 8px;
    font-size: 3.8rem;
  }
}

@media (max-width: 319px) {
  .rbv-premium-content .rbv-container {
    width: min(100%, calc(100% - 18px));
    padding: 38px 0;
  }

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

  .rbv-premium-content .rbv-card {
    padding: 15px;
    min-height: auto;
  }
}

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

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