@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-content-wrap,
.rpv-content-wrap *,
.rpv-content-wrap *::before,
.rpv-content-wrap *::after {
  box-sizing: border-box;
}

.rpv-content-wrap {
  --rpv-ink: #231f20;
  --rpv-muted: #655f5b;
  --rpv-soft: #fff6ef;
  --rpv-line: rgba(38, 31, 28, 0.1);
  --rpv-grad: linear-gradient(135deg, #ff4500 0%, #ff8a3d 45%, #d83a1a 100%);
  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(--rpv-ink);
}

.rpv-content-wrap .rpv-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 86px 20px;
}

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

.rpv-content-wrap .rpv-section-warm {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 69, 0, 0.1), transparent 31%),
    radial-gradient(circle at 92% 18%, rgba(255, 177, 107, 0.18), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #fff2e8 100%);
}

.rpv-content-wrap .rpv-container {
  width: min(1280px, 100%);
  max-width: 100%;
  margin: 0 auto;
}

.rpv-content-wrap .rpv-heading-block {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.rpv-content-wrap .rpv-heading-block 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-content-wrap .rpv-heading-block h2 span {
  display: inline;
  background: var(--rpv-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.rpv-content-wrap .rpv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rpv-card-a: #ff4500;
  --rpv-card-b: #ffb06f;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 246px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(38, 31, 28, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--rpv-card-a) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 244, 0.86));
  box-shadow: 0 16px 45px rgba(80, 45, 27, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(22px);
  opacity: 0;
  transition: transform 420ms ease, opacity 520ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rpv-content-wrap .rpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, color-mix(in srgb, var(--rpv-card-a) 13%, transparent), transparent 45%);
  opacity: 0.35;
  transition: opacity 260ms ease;
}

.rpv-content-wrap .rpv-card::after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rpv-card-a), var(--rpv-card-b));
  opacity: 0.72;
}

.rpv-content-wrap .rpv-card:hover {
  border-color: color-mix(in srgb, var(--rpv-card-a) 38%, rgba(38, 31, 28, 0.12));
  box-shadow: 0 24px 70px rgba(80, 45, 27, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.rpv-content-wrap .rpv-card:hover::before {
  opacity: 0.58;
}

.rpv-content-wrap .rpv-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--rpv-card-a);
  background: color-mix(in srgb, var(--rpv-card-a) 10%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rpv-card-a) 14%, transparent);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

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

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

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

.rpv-content-wrap .rpv-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rpv-card-a), var(--rpv-card-b));
  transition: width 260ms ease;
}

.rpv-content-wrap .rpv-card:hover h3::after {
  width: 74px;
}

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

.rpv-content-wrap .rpv-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rpv-card-a);
  font-size: 0.9rem;
  font-weight: 760;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rpv-content-wrap .rpv-tilt {
  transform-style: preserve-3d;
}

.rpv-content-wrap .rpv-tilt .rpv-icon,
.rpv-content-wrap .rpv-tilt h3,
.rpv-content-wrap .rpv-tilt p {
  transform: translateZ(18px);
}

.rpv-content-wrap .rpv-process-card {
  min-height: 260px;
}

.rpv-content-wrap .rpv-step {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 0;
  color: color-mix(in srgb, var(--rpv-card-a) 14%, transparent);
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 260ms ease, color 260ms ease;
  pointer-events: none;
}

.rpv-content-wrap .rpv-process-card:hover .rpv-step {
  color: color-mix(in srgb, var(--rpv-card-a) 24%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.rpv-content-wrap .rpv-card:nth-child(1) { --rpv-card-a: #ff4500; --rpv-card-b: #ff9966; }
.rpv-content-wrap .rpv-card:nth-child(2) { --rpv-card-a: #c2410c; --rpv-card-b: #fb923c; }
.rpv-content-wrap .rpv-card:nth-child(3) { --rpv-card-a: #e11d48; --rpv-card-b: #fb7185; }
.rpv-content-wrap .rpv-card:nth-child(4) { --rpv-card-a: #7c3aed; --rpv-card-b: #a78bfa; }
.rpv-content-wrap .rpv-card:nth-child(5) { --rpv-card-a: #0f766e; --rpv-card-b: #5eead4; }
.rpv-content-wrap .rpv-card:nth-child(6) { --rpv-card-a: #2563eb; --rpv-card-b: #93c5fd; }
.rpv-content-wrap .rpv-card:nth-child(7) { --rpv-card-a: #b45309; --rpv-card-b: #fbbf24; }
.rpv-content-wrap .rpv-card:nth-child(8) { --rpv-card-a: #be123c; --rpv-card-b: #fda4af; }

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

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

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

  .rpv-content-wrap .rpv-container {
    width: min(1080px, 100%);
  }

  .rpv-content-wrap .rpv-heading-block p {
    font-size: 0.98rem;
  }

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

  .rpv-content-wrap .rpv-card {
    padding: 23px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rpv-content-wrap .rpv-section {
    padding: 66px 20px;
  }

  .rpv-content-wrap .rpv-heading-block {
    margin-bottom: 30px;
  }

  .rpv-content-wrap .rpv-heading-block p {
    font-size: 0.96rem;
  }

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

  .rpv-content-wrap .rpv-card {
    padding: 22px;
  }

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

  .rpv-content-wrap .rpv-card p {
    font-size: 0.93rem;
  }
}

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

  .rpv-content-wrap .rpv-heading-block {
    margin-bottom: 25px;
  }

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

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

  .rpv-content-wrap .rpv-card {
    min-width: 0;
    min-height: auto;
    padding: 21px;
  }
}

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

  .rpv-content-wrap .rpv-heading-block {
    margin-bottom: 22px;
  }

  .rpv-content-wrap .rpv-heading-block p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

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

  .rpv-content-wrap .rpv-card {
    min-width: 0;
    min-height: auto;
    padding: 19px;
    border-radius: 16px;
  }

  .rpv-content-wrap .rpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .rpv-content-wrap .rpv-step {
    font-size: 3.35rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rpv-content-wrap .rpv-section {
    padding: 40px 12px;
  }

  .rpv-content-wrap .rpv-heading-block {
    margin-bottom: 20px;
  }

  .rpv-content-wrap .rpv-heading-block p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

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

  .rpv-content-wrap .rpv-card {
    min-width: 0;
    min-height: auto;
    padding: 17px;
    border-radius: 15px;
  }

  .rpv-content-wrap .rpv-card h3 {
    font-size: 0.98rem;
  }

  .rpv-content-wrap .rpv-card p,
  .rpv-content-wrap .rpv-cta {
    font-size: 0.84rem;
  }

  .rpv-content-wrap .rpv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .rpv-content-wrap .rpv-icon i {
    font-size: 1.05rem;
  }

  .rpv-content-wrap .rpv-step {
    top: 12px;
    right: 13px;
    font-size: 2.9rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .rpv-content-wrap .rpv-card,
  .rpv-content-wrap .rpv-card *,
  .rpv-content-wrap .rpv-card::before,
  .rpv-content-wrap .rpv-card::after {
    transition: none !important;
    animation: none !important;
  }

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