@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");

.rvv-premium-content,
.rvv-premium-content * {
  box-sizing: border-box;
}

.rvv-premium-content {
  --rvv-ink: #19110f;
  --rvv-muted: #675b55;
  --rvv-soft: #fff5ef;
  --rvv-line: rgba(212, 95, 42, 0.18);
  --rvv-orange: #ff4500;
  --rvv-coral: #f9734d;
  --rvv-gold: #f4b24b;
  --rvv-rose: #dc5f7c;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--rvv-ink);
  background: #fff;
}

.rvv-premium-content .rvv-section,
.rvv-premium-content .rvv-container,
.rvv-premium-content .rvv-grid {
  width: 100%;
  max-width: 100%;
}

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

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

.rvv-premium-content .rvv-section-warm {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 69, 0, 0.08), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(244, 178, 75, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8f2 0%, #fff2e8 100%);
}

.rvv-premium-content .rvv-container {
  max-width: 1280px;
  margin: 0 auto;
}

.rvv-premium-content .rvv-heading-wrap {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.rvv-premium-content .rvv-heading-wrap h2 span {
  background: linear-gradient(135deg, var(--rvv-orange), var(--rvv-coral) 46%, var(--rvv-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.rvv-premium-content .rvv-card {
  --fg-mx: 50%;
  --fg-my: 30%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rvv-card-a: #ff4500;
  --rvv-card-b: #f4b24b;
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 255px;
  padding: 26px;
  border: 1px solid rgba(194, 111, 73, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 240, 0.84));
  box-shadow: 0 16px 44px rgba(93, 42, 22, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  transform-style: preserve-3d;
  transition:
    opacity 0.65s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  will-change: transform;
}

.rvv-premium-content .rvv-card:nth-child(2) { --rvv-card-a: #e2552d; --rvv-card-b: #7c6df2; }
.rvv-premium-content .rvv-card:nth-child(3) { --rvv-card-a: #d84b73; --rvv-card-b: #ff9f43; }
.rvv-premium-content .rvv-card:nth-child(4) { --rvv-card-a: #c75c1c; --rvv-card-b: #22a699; }
.rvv-premium-content .rvv-card:nth-child(5) { --rvv-card-a: #ff6b35; --rvv-card-b: #6c8cff; }
.rvv-premium-content .rvv-card:nth-child(6) { --rvv-card-a: #b75030; --rvv-card-b: #e6b84f; }
.rvv-premium-content .rvv-card:nth-child(7) { --rvv-card-a: #e14f60; --rvv-card-b: #35b78f; }
.rvv-premium-content .rvv-card:nth-child(8) { --rvv-card-a: #f05a28; --rvv-card-b: #9b6ee8; }

.rvv-premium-content .rvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--rvv-card-a) 18%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--rvv-card-a) 8%, transparent), color-mix(in srgb, var(--rvv-card-b) 9%, transparent));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.rvv-premium-content .rvv-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--rvv-card-a), var(--rvv-card-b));
  opacity: 0.78;
}

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

.rvv-premium-content .rvv-card:hover {
  border-color: color-mix(in srgb, var(--rvv-card-a) 46%, transparent);
  box-shadow: 0 24px 62px rgba(110, 49, 20, 0.15);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

.rvv-premium-content .rvv-card:hover::before {
  opacity: 0.9;
}

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

.rvv-premium-content .rvv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 69, 0, 0.1), rgba(244, 178, 75, 0.12));
  color: var(--rvv-card-a);
  box-shadow: inset 0 0 0 1px rgba(255, 69, 0, 0.12);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

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

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

.rvv-premium-content .rvv-card h3 {
  display: inline;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 780;
  letter-spacing: 0;
  color: #211713;
  background-image: linear-gradient(90deg, var(--rvv-card-a), var(--rvv-card-b));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rvv-premium-content .rvv-card p {
  margin: 13px 0 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: #655852;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rvv-premium-content .rvv-card:hover .rvv-cta {
  opacity: 1;
  transform: translateY(0);
  color: color-mix(in srgb, var(--rvv-card-a) 86%, #32140d);
}

.rvv-premium-content .rvv-benefits .rvv-card {
  perspective: 900px;
}

.rvv-premium-content .rvv-process .rvv-card {
  min-height: 270px;
  padding-top: 24px;
}

.rvv-premium-content .rvv-process .rvv-card::before {
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(145deg, color-mix(in srgb, var(--rvv-card-a) 7%, transparent), color-mix(in srgb, var(--rvv-card-b) 7%, transparent));
}

.rvv-premium-content .rvv-process .rvv-card[data-step]::after {
  content: attr(data-step);
  inset: auto 18px 4px auto;
  height: auto;
  width: auto;
  background: none;
  font-size: 4.8rem;
  line-height: 0.8;
  font-weight: 900;
  color: color-mix(in srgb, var(--rvv-card-a) 13%, transparent);
  opacity: 1;
  transition: transform 0.28s ease, color 0.28s ease;
}

.rvv-premium-content .rvv-process .rvv-card:hover[data-step]::after {
  transform: translateY(-8px) scale(1.04);
  color: color-mix(in srgb, var(--rvv-card-a) 22%, transparent);
}

.rvv-premium-content .rvv-step-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rvv-card-a);
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .rvv-premium-content .rvv-section {
    padding: 92px 26px;
  }

  .rvv-premium-content .rvv-container {
    max-width: 1280px;
  }

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

  .rvv-premium-content .rvv-heading-wrap {
    margin-bottom: 44px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .rvv-premium-content .rvv-section {
    padding: 78px 22px;
  }

  .rvv-premium-content .rvv-container {
    max-width: 1060px;
  }

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

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .rvv-premium-content .rvv-section {
    padding: 66px 18px;
  }

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

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

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

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

  .rvv-premium-content .rvv-card p {
    font-size: 0.94rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rvv-premium-content .rvv-section {
    padding: 54px 16px;
  }

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

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

  .rvv-premium-content .rvv-heading-wrap p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .rvv-premium-content .rvv-card {
    padding: 21px;
    min-height: auto;
  }

  .rvv-premium-content .rvv-icon {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rvv-premium-content .rvv-section {
    padding: 46px 14px;
  }

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

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

  .rvv-premium-content .rvv-heading-wrap p {
    font-size: 0.91rem;
    line-height: 1.58;
  }

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

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

  .rvv-premium-content .rvv-card h3 {
    font-size: 0.99rem;
  }

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

  .rvv-premium-content .rvv-process .rvv-card[data-step]::after {
    font-size: 4rem;
  }
}

@media (max-width: 374px) {
  .rvv-premium-content .rvv-section {
    padding: 40px 12px;
  }

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

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

  .rvv-premium-content .rvv-heading-wrap p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

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

  .rvv-premium-content .rvv-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

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

  .rvv-premium-content .rvv-card h3 {
    font-size: 0.95rem;
  }

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

  .rvv-premium-content .rvv-process .rvv-card[data-step]::after {
    font-size: 3.4rem;
  }
}

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

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