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

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

.rwv-premium-content {
  --rwv-ink: #1f2633;
  --rwv-muted: #647084;
  --rwv-soft: #fff6f1;
  --rwv-line: rgba(237, 93, 56, 0.15);
  --rwv-brand: #ff4500;
  --rwv-brand-2: #f59e0b;
  --rwv-brand-3: #8b5cf6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--rwv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: #fff;
}

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

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

.rwv-premium-content .rwv-section-warm {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 69, 0, 0.11), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.10), transparent 30%),
    linear-gradient(180deg, #fff7f2 0%, #fffaf6 100%);
}

.rwv-premium-content .rwv-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 28px;
}

.rwv-premium-content .rwv-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.rwv-premium-content .rwv-section-head h2 span {
  background: linear-gradient(135deg, var(--rwv-brand), var(--rwv-brand-2) 48%, var(--rwv-brand-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rwv-premium-content .rwv-section-head p {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--rwv-muted);
  font-size: 1.03rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rwv-premium-content .rwv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rwv-card-a: #ff4500;
  --rwv-card-b: #f59e0b;
  --rwv-card-c: rgba(255, 69, 0, 0.10);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(31, 38, 51, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), var(--rwv-card-c));
  box-shadow: 0 18px 45px rgba(31, 38, 51, 0.08);
  transform: translateY(22px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  isolation: isolate;
  overflow: hidden;
}

.rwv-premium-content .rwv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--rwv-card-a) 22%, transparent), transparent 28%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  z-index: -1;
}

.rwv-premium-content .rwv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--rwv-card-a), var(--rwv-card-b));
  transform: scaleX(0.34);
  transform-origin: left;
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.rwv-premium-content .rwv-card:hover {
  border-color: color-mix(in srgb, var(--rwv-card-a) 34%, rgba(31, 38, 51, 0.12));
  box-shadow: 0 24px 58px rgba(31, 38, 51, 0.14);
  transform: translateY(-6px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

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

.rwv-premium-content .rwv-card:nth-child(2) { --rwv-card-a: #f97316; --rwv-card-b: #ef4444; --rwv-card-c: rgba(249, 115, 22, 0.10); }
.rwv-premium-content .rwv-card:nth-child(3) { --rwv-card-a: #8b5cf6; --rwv-card-b: #ec4899; --rwv-card-c: rgba(139, 92, 246, 0.10); }
.rwv-premium-content .rwv-card:nth-child(4) { --rwv-card-a: #06b6d4; --rwv-card-b: #3b82f6; --rwv-card-c: rgba(6, 182, 212, 0.10); }
.rwv-premium-content .rwv-card:nth-child(5) { --rwv-card-a: #22c55e; --rwv-card-b: #14b8a6; --rwv-card-c: rgba(34, 197, 94, 0.10); }
.rwv-premium-content .rwv-card:nth-child(6) { --rwv-card-a: #eab308; --rwv-card-b: #f97316; --rwv-card-c: rgba(234, 179, 8, 0.11); }
.rwv-premium-content .rwv-card:nth-child(7) { --rwv-card-a: #6366f1; --rwv-card-b: #06b6d4; --rwv-card-c: rgba(99, 102, 241, 0.10); }
.rwv-premium-content .rwv-card:nth-child(8) { --rwv-card-a: #f43f5e; --rwv-card-b: #ff4500; --rwv-card-c: rgba(244, 63, 94, 0.10); }

.rwv-premium-content .rwv-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--rwv-card-a);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--rwv-card-c));
  box-shadow: inset 0 0 0 1px rgba(31, 38, 51, 0.06), 0 12px 28px rgba(31, 38, 51, 0.08);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

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

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

.rwv-premium-content .rwv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: var(--rwv-ink);
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--rwv-card-a), var(--rwv-card-b));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rwv-premium-content .rwv-card:hover h3 {
  background-size: 100% 2px;
}

.rwv-premium-content .rwv-card p {
  margin: 13px 0 0;
  color: var(--rwv-muted);
  font-size: 0.96rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rwv-premium-content .rwv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rwv-card-a);
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.2;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rwv-premium-content .rwv-tilt {
  transform-style: preserve-3d;
  perspective: 900px;
}

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

.rwv-premium-content .rwv-process-card {
  min-height: 270px;
}

.rwv-premium-content .rwv-step-text {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 15px;
  color: var(--rwv-card-a);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rwv-premium-content .rwv-step-bg {
  position: absolute;
  top: 12px;
  right: 18px;
  color: color-mix(in srgb, var(--rwv-card-a) 15%, transparent);
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.rwv-premium-content .rwv-process-card:hover .rwv-step-bg {
  color: color-mix(in srgb, var(--rwv-card-a) 23%, transparent);
  transform: translateY(-4px) scale(1.05);
}

@media (min-width: 1200px) {
  .rwv-premium-content .rwv-container {
    max-width: 1240px;
    padding: 92px 30px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .rwv-premium-content .rwv-container {
    max-width: 1030px;
    padding: 78px 26px;
  }

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

  .rwv-premium-content .rwv-section-head p {
    font-size: 0.99rem;
  }

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

@media (min-width: 768px) and (max-width: 1023px) {
  .rwv-premium-content .rwv-container {
    padding: 66px 22px;
  }

  .rwv-premium-content .rwv-section-head {
    margin-bottom: 34px;
  }

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

  .rwv-premium-content .rwv-card {
    padding: 23px;
    min-height: 230px;
  }

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

  .rwv-premium-content .rwv-card p {
    font-size: 0.94rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rwv-premium-content .rwv-container {
    padding: 54px 18px;
  }

  .rwv-premium-content .rwv-section-head {
    margin-bottom: 28px;
  }

  .rwv-premium-content .rwv-section-head p {
    font-size: 0.94rem;
  }

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

  .rwv-premium-content .rwv-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 22px;
    min-height: auto;
  }

  .rwv-premium-content .rwv-cta {
    width: 100%;
  }
}

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

  .rwv-premium-content .rwv-section-head {
    margin-bottom: 24px;
  }

  .rwv-premium-content .rwv-section-head p {
    font-size: 0.91rem;
  }

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

  .rwv-premium-content .rwv-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px;
    border-radius: 16px;
    min-height: auto;
  }

  .rwv-premium-content .rwv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 17px;
  }

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

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

  .rwv-premium-content .rwv-step-bg {
    font-size: 3.7rem;
    right: 14px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rwv-premium-content .rwv-container {
    padding: 40px 12px;
  }

  .rwv-premium-content .rwv-section-head {
    margin-bottom: 22px;
  }

  .rwv-premium-content .rwv-section-head p {
    font-size: 0.88rem;
  }

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

  .rwv-premium-content .rwv-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 18px;
    border-radius: 15px;
    min-height: auto;
  }

  .rwv-premium-content .rwv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 15px;
  }

  .rwv-premium-content .rwv-icon i {
    font-size: 1.08rem;
  }

  .rwv-premium-content .rwv-card h3 {
    font-size: 0.95rem;
  }

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

  .rwv-premium-content .rwv-cta {
    font-size: 0.84rem;
  }

  .rwv-premium-content .rwv-step-text {
    font-size: 0.72rem;
  }

  .rwv-premium-content .rwv-step-bg {
    font-size: 3.1rem;
    right: 12px;
    top: 10px;
  }
}

@media (max-width: 319px) {
  .rwv-premium-content .rwv-container {
    padding: 34px 10px;
  }

  .rwv-premium-content .rwv-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .rwv-premium-content .rwv-card {
    padding: 16px;
    min-width: 0;
    max-width: 100%;
  }
}

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

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