@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-ink: #1d2433;
  --rvv-muted: #667085;
  --rvv-border: rgba(189, 102, 72, 0.16);
  --rvv-soft: #fff6f1;
  --rvv-glow: rgba(255, 107, 67, 0.22);
  --rvv-gradient: linear-gradient(135deg, #ff5a3d 0%, #e65389 48%, #8f5cff 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--rvv-ink);
}

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

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

.rvv-premium-content .rvv-section {
  padding: 92px 24px;
  overflow-x: hidden;
}

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

.rvv-premium-content .rvv-section-warm {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 105, 71, 0.11), transparent 32%),
    radial-gradient(circle at 84% 22%, rgba(143, 92, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #fff2ec 100%);
}

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

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

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

.rvv-premium-content h2 span {
  background: var(--rvv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.rvv-premium-content .rvv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rvv-card-accent: #ff6848;
  --rvv-card-accent-2: #e65389;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--rvv-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 244, 0.84));
  box-shadow: 0 18px 46px rgba(44, 37, 34, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 520ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.rvv-premium-content .rvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rvv-card-accent) 14%, transparent), transparent 45%),
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--rvv-card-accent-2) 18%, transparent), transparent 32%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.rvv-premium-content .rvv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--rvv-card-accent), var(--rvv-card-accent-2));
  transform: scaleX(0.22);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 260ms ease, opacity 260ms ease;
}

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

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

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

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

.rvv-premium-content .rvv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--rvv-card-accent) 12%, white);
  color: var(--rvv-card-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rvv-card-accent) 16%, transparent);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

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

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

.rvv-premium-content h3 {
  position: relative;
  z-index: 1;
  display: inline;
  margin: 0;
  color: var(--rvv-ink);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
  background-image: linear-gradient(90deg, var(--rvv-card-accent), var(--rvv-card-accent-2));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 260ms 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 {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  color: var(--rvv-muted);
  font-size: 0.94rem;
  line-height: 1.66;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rvv-premium-content .rvv-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rvv-card-accent);
  font-size: 0.88rem;
  font-weight: 760;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rvv-premium-content .rvv-tilt-card {
  transform-style: preserve-3d;
}

.rvv-premium-content .rvv-tilt-card .rvv-icon,
.rvv-premium-content .rvv-tilt-card h3,
.rvv-premium-content .rvv-tilt-card p {
  transform: translateZ(10px);
}

.rvv-premium-content .rvv-process-card {
  padding-top: 30px;
}

.rvv-premium-content .rvv-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  color: color-mix(in srgb, var(--rvv-card-accent) 13%, transparent);
  opacity: 0.72;
  transition: transform 260ms ease, opacity 260ms ease;
  pointer-events: none;
}

.rvv-premium-content .rvv-process-card:hover::before {
  transform: translateY(-4px) scale(1.04);
  opacity: 1;
}

.rvv-premium-content .rvv-step-text {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: var(--rvv-card-accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rvv-premium-content .rvv-card:nth-child(8n + 1) {
  --rvv-card-accent: #ff633f;
  --rvv-card-accent-2: #f04438;
}

.rvv-premium-content .rvv-card:nth-child(8n + 2) {
  --rvv-card-accent: #e65389;
  --rvv-card-accent-2: #ff8a4c;
}

.rvv-premium-content .rvv-card:nth-child(8n + 3) {
  --rvv-card-accent: #8f5cff;
  --rvv-card-accent-2: #e65389;
}

.rvv-premium-content .rvv-card:nth-child(8n + 4) {
  --rvv-card-accent: #0ea5a4;
  --rvv-card-accent-2: #ff6b43;
}

.rvv-premium-content .rvv-card:nth-child(8n + 5) {
  --rvv-card-accent: #f59e0b;
  --rvv-card-accent-2: #ef4444;
}

.rvv-premium-content .rvv-card:nth-child(8n + 6) {
  --rvv-card-accent: #2563eb;
  --rvv-card-accent-2: #14b8a6;
}

.rvv-premium-content .rvv-card:nth-child(8n + 7) {
  --rvv-card-accent: #7c3aed;
  --rvv-card-accent-2: #fb7185;
}

.rvv-premium-content .rvv-card:nth-child(8n + 8) {
  --rvv-card-accent: #16a34a;
  --rvv-card-accent-2: #f97316;
}

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

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

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

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

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

  .rvv-premium-content .rvv-section-header p {
    font-size: 0.98rem;
  }

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

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

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

  .rvv-premium-content .rvv-section-header {
    margin-bottom: 34px;
  }

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

  .rvv-premium-content .rvv-card {
    padding: 23px;
    min-height: 224px;
  }

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

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

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

  .rvv-premium-content .rvv-section-header {
    margin-bottom: 28px;
  }

  .rvv-premium-content .rvv-section-header p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

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

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

  .rvv-premium-content .rvv-cta {
    opacity: 1;
    transform: none;
  }
}

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

  .rvv-premium-content .rvv-section-header {
    margin-bottom: 24px;
  }

  .rvv-premium-content .rvv-section-header p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

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

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

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

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

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

  .rvv-premium-content .rvv-process-card::before {
    font-size: 4rem;
  }

  .rvv-premium-content .rvv-cta {
    opacity: 1;
    transform: none;
  }
}

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

  .rvv-premium-content .rvv-section-header {
    margin-bottom: 22px;
  }

  .rvv-premium-content .rvv-section-header p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

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

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

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

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

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

  .rvv-premium-content .rvv-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .rvv-premium-content .rvv-process-card::before {
    right: 12px;
    top: 8px;
    font-size: 3.4rem;
  }

  .rvv-premium-content .rvv-step-text,
  .rvv-premium-content .rvv-cta {
    font-size: 0.78rem;
  }

  .rvv-premium-content .rvv-cta {
    opacity: 1;
    transform: none;
  }
}

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

@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 h3,
  .rvv-premium-content .rvv-cta,
  .rvv-premium-content .rvv-process-card::before {
    transition: none !important;
    animation: none !important;
  }

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