@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: #241a16;
  --rvv-muted: #6f625c;
  --rvv-line: rgba(181, 92, 45, 0.16);
  --rvv-soft: #fff6ef;
  --rvv-main: #ff4500;
  --rvv-alt: #c044ff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--rvv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.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 {
  position: relative;
  padding: 86px 18px;
  overflow: hidden;
}

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

.rvv-premium-content .rvv-section--warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 69, 0, 0.12), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(192, 68, 255, 0.10), transparent 32%),
    linear-gradient(180deg, #fff8f3 0%, #fff1e9 100%);
}

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

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

.rvv-premium-content .rvv-heading-wrap h2 {
  margin: 0;
  color: var(--rvv-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;
}

.rvv-premium-content .rvv-heading-wrap h2 span {
  background: linear-gradient(135deg, #ff4500 0%, #ff8a3d 42%, #c044ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rvv-premium-content .rvv-heading-wrap p {
  margin: 14px auto 0;
  color: var(--rvv-muted);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 680px;
  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: 30%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rvv-accent: #ff4500;
  --rvv-accent-2: #ffb066;
  --rvv-card-bg: #ffffff;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 255px;
  padding: 26px;
  border: 1px solid rgba(36, 26, 22, 0.09);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--rvv-accent) 20%, transparent), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), var(--rvv-card-bg));
  box-shadow: 0 16px 38px rgba(73, 39, 22, 0.08);
  transform: translateY(22px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  overflow: hidden;
  transition: transform 420ms ease, opacity 520ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
  transform-style: preserve-3d;
}

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

.rvv-premium-content .rvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--rvv-accent) 12%, transparent), transparent 44%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.rvv-premium-content .rvv-card:hover {
  border-color: color-mix(in srgb, var(--rvv-accent) 38%, rgba(36, 26, 22, 0.14));
  box-shadow: 0 24px 56px rgba(73, 39, 22, 0.14);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

.rvv-premium-content .rvv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--rvv-accent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--rvv-accent) 13%, #fff), #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rvv-accent) 16%, transparent);
  transition: transform 320ms ease, color 320ms ease, background 320ms ease;
}

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

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

.rvv-premium-content .rvv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--rvv-ink);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rvv-premium-content .rvv-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rvv-accent), var(--rvv-accent-2));
  transition: width 320ms ease;
}

.rvv-premium-content .rvv-card:hover h3::after {
  width: 70px;
}

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

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

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

.rvv-premium-content .rvv-card:nth-child(1) { --rvv-accent: #ff4500; --rvv-accent-2: #ff9f43; --rvv-card-bg: #fff8f3; }
.rvv-premium-content .rvv-card:nth-child(2) { --rvv-accent: #c044ff; --rvv-accent-2: #ff6fb1; --rvv-card-bg: #fff7fd; }
.rvv-premium-content .rvv-card:nth-child(3) { --rvv-accent: #0f9f8f; --rvv-accent-2: #71d7b9; --rvv-card-bg: #f5fffc; }
.rvv-premium-content .rvv-card:nth-child(4) { --rvv-accent: #4361ee; --rvv-accent-2: #72b8ff; --rvv-card-bg: #f6f8ff; }
.rvv-premium-content .rvv-card:nth-child(5) { --rvv-accent: #d35400; --rvv-accent-2: #ffc266; --rvv-card-bg: #fff8ef; }
.rvv-premium-content .rvv-card:nth-child(6) { --rvv-accent: #7b61ff; --rvv-accent-2: #b98cff; --rvv-card-bg: #faf8ff; }
.rvv-premium-content .rvv-card:nth-child(7) { --rvv-accent: #187a57; --rvv-accent-2: #66cfa2; --rvv-card-bg: #f7fffa; }
.rvv-premium-content .rvv-card:nth-child(8) { --rvv-accent: #e23b6f; --rvv-accent-2: #ff9a76; --rvv-card-bg: #fff6f8; }

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

.rvv-premium-content .rvv-process-card {
  min-height: 275px;
}

.rvv-premium-content .rvv-process-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: -12px;
  color: color-mix(in srgb, var(--rvv-accent) 14%, transparent);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 320ms ease, opacity 320ms ease;
  pointer-events: none;
}

.rvv-premium-content .rvv-process-card:hover::after {
  transform: translateY(-8px) scale(1.04);
  opacity: 0.9;
}

.rvv-premium-content .rvv-step-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rvv-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

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

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

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

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

  .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 22px;
  }

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

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

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

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

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

  .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-heading-wrap {
    margin-bottom: 28px;
  }

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

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

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

  .rvv-premium-content .rvv-card-cta {
    max-width: 100%;
  }
}

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

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

  .rvv-premium-content .rvv-heading-wrap 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 {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

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

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

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

  .rvv-premium-content .rvv-process-card::after {
    font-size: 4.2rem;
  }
}

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

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

  .rvv-premium-content .rvv-heading-wrap 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 {
    min-height: auto;
    padding: 18px;
    border-radius: 16px;
  }

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

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

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

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

  .rvv-premium-content .rvv-process-card::after {
    right: 12px;
    font-size: 3.7rem;
  }
}

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

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