@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: #241914;
  --rbv-muted: #6f625c;
  --rbv-line: rgba(126, 75, 45, 0.16);
  --rbv-soft: #fff7f1;
  --rbv-accent: #ff4500;
  --rbv-accent-2: #c73612;
  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,
.rbv-premium-content .rbv-container,
.rbv-premium-content .rbv-grid {
  width: 100%;
  max-width: 100%;
}

.rbv-premium-content .rbv-section {
  position: relative;
  padding: 86px 18px;
  overflow: hidden;
}

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

.rbv-premium-content .rbv-section-warm {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 69, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #fff4ec 0%, #fffaf6 48%, #f7efe7 100%);
}

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

.rbv-premium-content .rbv-heading-wrap {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.rbv-premium-content h2 span {
  background: linear-gradient(135deg, #ff4500 0%, #e04a18 40%, #8d3b22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.rbv-premium-content .rbv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rbv-card-accent: #ff4500;
  --rbv-card-soft: rgba(255, 69, 0, 0.1);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 255px;
  padding: 25px;
  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.95), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.82));
  box-shadow: 0 18px 45px rgba(53, 31, 20, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  overflow: hidden;
  transition: transform 260ms ease, opacity 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-content .rbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rbv-card-soft), transparent 46%);
  opacity: 0.8;
  pointer-events: none;
}

.rbv-premium-content .rbv-card::after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, transparent, var(--rbv-card-accent), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 260ms ease, transform 260ms ease;
}

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

.rbv-premium-content .rbv-card:hover {
  border-color: color-mix(in srgb, var(--rbv-card-accent) 42%, transparent);
  box-shadow: 0 26px 70px rgba(53, 31, 20, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

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

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

.rbv-premium-content .rbv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--rbv-card-accent);
  background: var(--rbv-card-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

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

.rbv-premium-content .rbv-card:hover .rbv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--rbv-card-accent), #231511);
  transform: translateY(-3px) rotate(-3deg) scale(1.05);
}

.rbv-premium-content .rbv-card h3 {
  display: inline;
  margin: 0;
  color: var(--rbv-ink);
  font-size: 1.05rem;
  line-height: 1.28;
  font-weight: 780;
  background-image: linear-gradient(var(--rbv-card-accent), var(--rbv-card-accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 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: 13px 0 0;
  color: var(--rbv-muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

.rbv-premium-content .rbv-process {
  min-height: 278px;
}

.rbv-premium-content .rbv-step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  color: color-mix(in srgb, var(--rbv-card-accent) 18%, transparent);
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 260ms ease, color 260ms ease;
}

.rbv-premium-content .rbv-process:hover .rbv-step-num {
  color: color-mix(in srgb, var(--rbv-card-accent) 28%, transparent);
  transform: translateY(-5px) scale(1.04);
}

.rbv-premium-content .rbv-card:nth-child(1) { --rbv-card-accent: #ff4500; --rbv-card-soft: rgba(255, 69, 0, 0.11); }
.rbv-premium-content .rbv-card:nth-child(2) { --rbv-card-accent: #d9480f; --rbv-card-soft: rgba(217, 72, 15, 0.11); }
.rbv-premium-content .rbv-card:nth-child(3) { --rbv-card-accent: #a8552a; --rbv-card-soft: rgba(168, 85, 42, 0.11); }
.rbv-premium-content .rbv-card:nth-child(4) { --rbv-card-accent: #c2410c; --rbv-card-soft: rgba(194, 65, 12, 0.11); }
.rbv-premium-content .rbv-card:nth-child(5) { --rbv-card-accent: #b45309; --rbv-card-soft: rgba(180, 83, 9, 0.11); }
.rbv-premium-content .rbv-card:nth-child(6) { --rbv-card-accent: #e11d48; --rbv-card-soft: rgba(225, 29, 72, 0.09); }
.rbv-premium-content .rbv-card:nth-child(7) { --rbv-card-accent: #7c3aed; --rbv-card-soft: rgba(124, 58, 237, 0.09); }
.rbv-premium-content .rbv-card:nth-child(8) { --rbv-card-accent: #0f766e; --rbv-card-soft: rgba(15, 118, 110, 0.1); }

@media (min-width: 1200px) {
  .rbv-premium-content .rbv-section { padding: 92px 26px; }
  .rbv-premium-content .rbv-container { max-width: 1240px; }
  .rbv-premium-content .rbv-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .rbv-premium-content .rbv-section { padding: 78px 22px; }
  .rbv-premium-content .rbv-container { max-width: 1060px; }
  .rbv-premium-content .rbv-heading-wrap p { font-size: 0.98rem; }
  .rbv-premium-content .rbv-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .rbv-premium-content .rbv-card { padding: 23px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rbv-premium-content .rbv-section { padding: 66px 18px; }
  .rbv-premium-content .rbv-heading-wrap { margin-bottom: 30px; }
  .rbv-premium-content .rbv-heading-wrap p { font-size: 0.96rem; }
  .rbv-premium-content .rbv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .rbv-premium-content .rbv-card { padding: 22px; }
  .rbv-premium-content .rbv-card h3 { font-size: 1rem; }
  .rbv-premium-content .rbv-card p { font-size: 0.92rem; }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rbv-premium-content .rbv-section { padding: 54px 15px; }
  .rbv-premium-content .rbv-heading-wrap { margin-bottom: 26px; }
  .rbv-premium-content .rbv-heading-wrap p { font-size: 0.93rem; }
  .rbv-premium-content .rbv-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .rbv-premium-content .rbv-card { min-height: 0; padding: 21px; border-radius: 18px; }
  .rbv-premium-content .rbv-cta { opacity: 1; transform: none; }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rbv-premium-content .rbv-section { padding: 46px 13px; }
  .rbv-premium-content .rbv-heading-wrap { margin-bottom: 22px; }
  .rbv-premium-content .rbv-heading-wrap p { font-size: 0.9rem; }
  .rbv-premium-content .rbv-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .rbv-premium-content .rbv-card { min-height: 0; padding: 18px; border-radius: 17px; }
  .rbv-premium-content .rbv-icon { width: 46px; height: 46px; border-radius: 14px; margin-bottom: 17px; }
  .rbv-premium-content .rbv-card h3 { font-size: 0.98rem; }
  .rbv-premium-content .rbv-card p { font-size: 0.9rem; }
  .rbv-premium-content .rbv-step-num { font-size: 3.6rem; right: 15px; }
  .rbv-premium-content .rbv-cta { opacity: 1; transform: none; }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rbv-premium-content .rbv-section { padding: 40px 10px; }
  .rbv-premium-content .rbv-heading-wrap { margin-bottom: 20px; }
  .rbv-premium-content .rbv-heading-wrap p { font-size: 0.86rem; }
  .rbv-premium-content .rbv-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .rbv-premium-content .rbv-card { min-height: 0; padding: 16px; border-radius: 16px; }
  .rbv-premium-content .rbv-icon { width: 42px; height: 42px; border-radius: 13px; margin-bottom: 15px; }
  .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-cta { font-size: 0.86rem; }
  .rbv-premium-content .rbv-step-num { font-size: 3.1rem; top: 12px; right: 13px; }
  .rbv-premium-content .rbv-cta { opacity: 1; transform: none; }
}

@media (max-width: 319px) {
  .rbv-premium-content .rbv-section { padding: 36px 8px; }
  .rbv-premium-content .rbv-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .rbv-premium-content .rbv-card { min-height: 0; padding: 14px; }
}

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

  .rbv-premium-content .rbv-card {
    opacity: 1;
  }
}