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

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

.rpv-premium-content {
  --rpv-ink: #211a18;
  --rpv-muted: #6f625d;
  --rpv-line: rgba(121, 74, 47, 0.14);
  --rpv-grad: linear-gradient(135deg, #ff4500 0%, #f97316 42%, #b45309 100%);
  --rpv-soft: #fff7ed;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--rpv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rpv-premium-content .rpv-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

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

.rpv-premium-content .rpv-section-warm {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 69, 0, 0.09), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(251, 146, 60, 0.1), transparent 30%),
    linear-gradient(180deg, #fff7ed 0%, #fffaf5 100%);
}

.rpv-premium-content .rpv-container {
  width: min(1320px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
  padding: 88px 0;
}

.rpv-premium-content .rpv-section-header {
  width: min(780px, 100%);
  max-width: 100%;
  margin: 0 auto 38px;
  text-align: center;
}

.rpv-premium-content .rpv-section-header h2 {
  margin: 0;
  color: var(--rpv-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;
}

.rpv-premium-content .rpv-section-header h2 span {
  background: var(--rpv-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.rpv-premium-content .rpv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rpv-accent: #ff4500;
  --rpv-accent-2: #fb923c;
  --rpv-card-bg: #ffffff;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 246px;
  padding: 26px;
  border: 1px solid var(--rpv-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--rpv-accent) 18%, transparent), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), var(--rpv-card-bg));
  box-shadow: 0 16px 42px rgba(97, 54, 30, 0.08);
  overflow: hidden;
  transform: translateY(24px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  transform-style: preserve-3d;
}

.rpv-premium-content .rpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--rpv-accent) 14%, transparent), transparent 46%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.rpv-premium-content .rpv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rpv-accent), var(--rpv-accent-2));
  transform: scaleX(0.28);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

.rpv-premium-content .rpv-card:hover {
  border-color: color-mix(in srgb, var(--rpv-accent) 48%, transparent);
  box-shadow: 0 24px 64px rgba(97, 54, 30, 0.16);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

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

.rpv-premium-content .rpv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--rpv-accent);
  background: color-mix(in srgb, var(--rpv-accent) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--rpv-accent) 18%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

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

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

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

.rpv-premium-content .rpv-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rpv-accent), var(--rpv-accent-2));
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.rpv-premium-content .rpv-card:hover h3::after {
  transform: scaleX(1.35);
}

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

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

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

.rpv-premium-content .rpv-tilt-card:hover {
  transform: translateY(-8px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

.rpv-premium-content .rpv-process-card {
  padding-top: 34px;
}

.rpv-premium-content .rpv-step-number {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 0;
  color: color-mix(in srgb, var(--rpv-accent) 18%, transparent);
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 0.28s ease, color 0.28s ease;
}

.rpv-premium-content .rpv-process-card:hover .rpv-step-number {
  color: color-mix(in srgb, var(--rpv-accent) 28%, transparent);
  transform: translateY(-3px) scale(1.06);
}

.rpv-premium-content .rpv-card:nth-child(1) { --rpv-accent: #ff4500; --rpv-accent-2: #fb923c; --rpv-card-bg: #fff8f3; }
.rpv-premium-content .rpv-card:nth-child(2) { --rpv-accent: #dc2626; --rpv-accent-2: #f97316; --rpv-card-bg: #fff7f2; }
.rpv-premium-content .rpv-card:nth-child(3) { --rpv-accent: #c2410c; --rpv-accent-2: #f59e0b; --rpv-card-bg: #fffaf0; }
.rpv-premium-content .rpv-card:nth-child(4) { --rpv-accent: #be123c; --rpv-accent-2: #fb7185; --rpv-card-bg: #fff5f7; }
.rpv-premium-content .rpv-card:nth-child(5) { --rpv-accent: #7c3aed; --rpv-accent-2: #f97316; --rpv-card-bg: #fbf7ff; }
.rpv-premium-content .rpv-card:nth-child(6) { --rpv-accent: #0f766e; --rpv-accent-2: #f97316; --rpv-card-bg: #f5fffb; }
.rpv-premium-content .rpv-card:nth-child(7) { --rpv-accent: #2563eb; --rpv-accent-2: #fb923c; --rpv-card-bg: #f6f9ff; }
.rpv-premium-content .rpv-card:nth-child(8) { --rpv-accent: #9333ea; --rpv-accent-2: #ef4444; --rpv-card-bg: #fff7fb; }

@media (min-width: 1200px) {
  .rpv-premium-content .rpv-container {
    width: min(1320px, calc(100% - 64px));
    padding: 96px 0;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .rpv-premium-content .rpv-container {
    width: min(1080px, calc(100% - 44px));
    padding: 82px 0;
  }

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

  .rpv-premium-content .rpv-section-header p {
    font-size: 0.97rem;
  }

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .rpv-premium-content .rpv-container {
    width: min(900px, calc(100% - 36px));
    padding: 68px 0;
  }

  .rpv-premium-content .rpv-section-header {
    margin-bottom: 30px;
  }

  .rpv-premium-content .rpv-section-header p {
    font-size: 0.95rem;
  }

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

  .rpv-premium-content .rpv-card {
    padding: 22px;
    min-height: 230px;
  }

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

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

@media (min-width: 430px) and (max-width: 767px) {
  .rpv-premium-content .rpv-container {
    width: min(100%, calc(100% - 28px));
    padding: 54px 0;
  }

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

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

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

  .rpv-premium-content .rpv-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 21px;
  }

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

@media (min-width: 375px) and (max-width: 429px) {
  .rpv-premium-content .rpv-container {
    width: min(100%, calc(100% - 24px));
    padding: 46px 0;
  }

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

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

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

  .rpv-premium-content .rpv-card {
    padding: 19px;
    min-height: 0;
  }

  .rpv-premium-content .rpv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .rpv-premium-content .rpv-icon i {
    font-size: 1.06rem;
  }

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

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

  .rpv-premium-content .rpv-step-number {
    font-size: 2.55rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rpv-premium-content .rpv-container {
    width: min(100%, calc(100% - 20px));
    padding: 40px 0;
  }

  .rpv-premium-content .rpv-section-header {
    margin-bottom: 20px;
  }

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

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

  .rpv-premium-content .rpv-card {
    padding: 17px;
    min-height: 0;
    border-radius: 8px;
  }

  .rpv-premium-content .rpv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

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

  .rpv-premium-content .rpv-card h3 {
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .rpv-premium-content .rpv-card p,
  .rpv-premium-content .rpv-cta {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .rpv-premium-content .rpv-step-number {
    top: 14px;
    right: 14px;
    font-size: 2.25rem;
  }
}

@media (max-width: 319px) {
  .rpv-premium-content .rpv-container {
    width: min(100%, calc(100% - 18px));
    padding: 36px 0;
  }

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

  .rpv-premium-content .rpv-card {
    padding: 16px;
    min-height: 0;
  }
}

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

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