@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

.rvv-premium-content {
  --rvv-ink: #221713;
  --rvv-muted: #705f58;
  --rvv-line: rgba(111, 70, 49, 0.16);
  --rvv-soft: #fff7f0;
  --rvv-accent: #ff4500;
  --rvv-accent-2: #c93305;
  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 {
  width: 100%;
  max-width: 100%;
  padding: 82px 22px;
  overflow: hidden;
}

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

.rvv-premium-content .rvv-section-warm {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 69, 0, 0.09), transparent 30%),
    linear-gradient(180deg, #fff8f2 0%, #fff2e8 100%);
}

.rvv-premium-content .rvv-container {
  width: min(1240px, 100%);
  max-width: 100%;
  margin: 0 auto;
}

.rvv-premium-content .rvv-heading-wrap {
  max-width: 760px;
  margin: 0 auto 38px;
  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;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rvv-premium-content .rvv-heading-wrap p {
  margin: 14px auto 0;
  max-width: 660px;
  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;
  width: 100%;
  max-width: 100%;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rvv-premium-content .rvv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rvv-card-a: #ff4500;
  --rvv-card-b: #ffd0bd;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--rvv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 242, 0.86));
  box-shadow: 0 18px 46px rgba(96, 50, 26, 0.09);
  transform: translateY(22px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.7s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  transform-style: preserve-3d;
}

.rvv-premium-content .rvv-card:nth-child(2n) {
  --rvv-card-a: #d14a25;
  --rvv-card-b: #ffe0c7;
}

.rvv-premium-content .rvv-card:nth-child(3n) {
  --rvv-card-a: #b64f2b;
  --rvv-card-b: #ffd7ad;
}

.rvv-premium-content .rvv-card:nth-child(4n) {
  --rvv-card-a: #f97316;
  --rvv-card-b: #ffedd5;
}

.rvv-premium-content .rvv-card:nth-child(5n) {
  --rvv-card-a: #9a3412;
  --rvv-card-b: #fed7aa;
}

.rvv-premium-content .rvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rvv-card-a) 14%, transparent), transparent 40%),
    radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--rvv-card-b) 55%, transparent), transparent 30%);
  opacity: 0.7;
  pointer-events: none;
}

.rvv-premium-content .rvv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rvv-card-a), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.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) 42%, transparent);
  box-shadow: 0 24px 64px rgba(96, 50, 26, 0.16);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

.rvv-premium-content .rvv-card > * {
  position: relative;
  z-index: 1;
}

.rvv-premium-content .rvv-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--rvv-card-a);
  background: color-mix(in srgb, var(--rvv-card-b) 58%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rvv-card-a) 16%, transparent);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

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

.rvv-premium-content .rvv-card h3 {
  display: inline;
  margin: 0;
  color: var(--rvv-ink);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 760;
  background-image: linear-gradient(90deg, var(--rvv-card-a), var(--rvv-card-a));
  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;
  color: var(--rvv-muted);
  font-size: 0.95rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rvv-premium-content .rvv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rvv-card-a);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0.42;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s 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 {
  will-change: transform;
}

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

.rvv-premium-content .rvv-process::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 8px;
  color: color-mix(in srgb, var(--rvv-card-a) 14%, transparent);
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.28s ease, color 0.28s ease;
}

.rvv-premium-content .rvv-process:hover::before {
  color: color-mix(in srgb, var(--rvv-card-a) 22%, transparent);
  transform: translateY(4px) scale(1.04);
}

.rvv-premium-content .rvv-step-line {
  margin-bottom: 18px;
  color: var(--rvv-card-a);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

  .rvv-premium-content .rvv-container {
    width: min(1240px, 100%);
  }

  .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: 76px 24px;
  }

  .rvv-premium-content .rvv-container {
    width: min(1060px, 100%);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .rvv-premium-content .rvv-cta {
    white-space: normal;
  }
}

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

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

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

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

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

  .rvv-premium-content .rvv-icon {
    width: 43px;
    height: 43px;
    border-radius: 14px;
    font-size: 1.18rem;
  }

  .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::before {
    font-size: 4rem;
  }
}

@media (max-width: 374px) {
  .rvv-premium-content .rvv-section {
    padding: 40px 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: 17px;
    border-radius: 16px;
  }

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

  .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::before {
    right: 12px;
    font-size: 3.4rem;
  }
}

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

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