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

.rbv-premium-editorial,
.rbv-premium-editorial *,
.rbv-premium-editorial *::before,
.rbv-premium-editorial *::after {
  box-sizing: border-box;
}

.rbv-premium-editorial {
  --rbv-ink: #201914;
  --rbv-muted: #6f6258;
  --rbv-line: rgba(124, 80, 45, 0.16);
  --rbv-cream: #fff7ef;
  --rbv-warm: #f8eadc;
  --rbv-accent: #ff4500;
  --rbv-accent-2: #c9682b;
  --rbv-gold: #d69a44;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--rbv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #fff;
}

.rbv-premium-editorial .rbv-section,
.rbv-premium-editorial .rbv-container,
.rbv-premium-editorial .rbv-card-grid {
  width: 100%;
  max-width: 100%;
}

.rbv-premium-editorial .rbv-section {
  position: relative;
  padding: 92px 24px;
  overflow: hidden;
}

.rbv-premium-editorial .rbv-section-intro,
.rbv-premium-editorial .rbv-section-process {
  background: #fff;
}

.rbv-premium-editorial .rbv-section-benefits {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 69, 0, 0.12), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(214, 154, 68, 0.16), transparent 30%),
    linear-gradient(180deg, #fff8f1 0%, #f7eadc 100%);
}

.rbv-premium-editorial .rbv-container {
  max-width: 1240px;
  margin: 0 auto;
}

.rbv-premium-editorial .rbv-heading-wrap {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.rbv-premium-editorial .rbv-heading-wrap h2 span {
  background: linear-gradient(135deg, #ff4500 0%, #c9682b 48%, #d69a44 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.rbv-premium-editorial .rbv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --rbv-card-a: #ff4500;
  --rbv-card-b: #f6b25c;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(112, 75, 43, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 239, 0.88));
  box-shadow: 0 14px 38px rgba(80, 49, 26, 0.08);
  overflow: hidden;
  transform: translateY(28px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

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

.rbv-premium-editorial .rbv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rbv-card-a) 16%, transparent), transparent 42%),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--rbv-card-b) 18%, transparent), transparent 36%);
  opacity: 0.78;
  pointer-events: none;
}

.rbv-premium-editorial .rbv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--rbv-card-a), var(--rbv-card-b));
  transform: scaleX(0.22);
  transform-origin: left;
  opacity: 0.72;
  transition: transform 260ms ease, opacity 260ms ease;
}

.rbv-premium-editorial .rbv-card:hover {
  border-color: color-mix(in srgb, var(--rbv-card-a) 34%, rgba(112, 75, 43, 0.18));
  box-shadow: 0 24px 58px rgba(80, 49, 26, 0.16);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

.rbv-premium-editorial .rbv-card > * {
  position: relative;
  z-index: 1;
}

.rbv-premium-editorial .rbv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 15px;
  color: var(--rbv-card-a);
  background: color-mix(in srgb, var(--rbv-card-a) 11%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--rbv-card-a) 18%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(73, 44, 24, 0.08);
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.rbv-premium-editorial .rbv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

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

.rbv-premium-editorial .rbv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: var(--rbv-ink);
  font-size: 1.06rem;
  line-height: 1.32;
  font-weight: 790;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  background-image: linear-gradient(90deg, var(--rbv-card-a), var(--rbv-card-b));
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size 260ms ease;
}

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

.rbv-premium-editorial .rbv-card p {
  margin: 14px 0 0;
  color: var(--rbv-muted);
  font-size: 0.94rem;
  line-height: 1.66;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbv-premium-editorial .rbv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--rbv-card-a);
  font-size: 0.87rem;
  font-weight: 780;
  line-height: 1.4;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.rbv-premium-editorial .rbv-process-card {
  padding-top: 24px;
}

.rbv-premium-editorial .rbv-step-text {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rbv-card-a);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rbv-premium-editorial .rbv-bg-number {
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 0;
  color: color-mix(in srgb, var(--rbv-card-a) 13%, transparent);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.rbv-premium-editorial .rbv-process-card:hover .rbv-bg-number {
  transform: translateY(-4px) scale(1.06);
  opacity: 0.9;
}

.rbv-premium-editorial .rbv-card:nth-child(1) { --rbv-card-a: #ff4500; --rbv-card-b: #ff9a3d; }
.rbv-premium-editorial .rbv-card:nth-child(2) { --rbv-card-a: #c9682b; --rbv-card-b: #e7b45f; }
.rbv-premium-editorial .rbv-card:nth-child(3) { --rbv-card-a: #b44a65; --rbv-card-b: #f0a66f; }
.rbv-premium-editorial .rbv-card:nth-child(4) { --rbv-card-a: #8d6b2f; --rbv-card-b: #d8b855; }
.rbv-premium-editorial .rbv-card:nth-child(5) { --rbv-card-a: #cf5138; --rbv-card-b: #f0bd75; }
.rbv-premium-editorial .rbv-card:nth-child(6) { --rbv-card-a: #9b5c35; --rbv-card-b: #df8f51; }
.rbv-premium-editorial .rbv-card:nth-child(7) { --rbv-card-a: #b84f2c; --rbv-card-b: #efc15e; }
.rbv-premium-editorial .rbv-card:nth-child(8) { --rbv-card-a: #d15b20; --rbv-card-b: #cda24a; }

@media (min-width: 1200px) {
  .rbv-premium-editorial .rbv-section {
    padding: 96px 28px;
  }

  .rbv-premium-editorial .rbv-container {
    max-width: 1240px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .rbv-premium-editorial .rbv-section {
    padding: 82px 24px;
  }

  .rbv-premium-editorial .rbv-container {
    max-width: 1040px;
  }

  .rbv-premium-editorial .rbv-heading-wrap {
    margin-bottom: 36px;
  }

  .rbv-premium-editorial .rbv-heading-wrap p {
    font-size: 0.99rem;
  }

  .rbv-premium-editorial .rbv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .rbv-premium-editorial .rbv-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rbv-premium-editorial .rbv-section {
    padding: 70px 20px;
  }

  .rbv-premium-editorial .rbv-heading-wrap {
    margin-bottom: 32px;
  }

  .rbv-premium-editorial .rbv-heading-wrap p {
    font-size: 0.96rem;
  }

  .rbv-premium-editorial .rbv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .rbv-premium-editorial .rbv-card {
    min-height: 238px;
    padding: 23px;
  }

  .rbv-premium-editorial .rbv-card h3 {
    font-size: 1rem;
  }

  .rbv-premium-editorial .rbv-card p {
    font-size: 0.91rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rbv-premium-editorial .rbv-section {
    padding: 58px 16px;
  }

  .rbv-premium-editorial .rbv-heading-wrap {
    margin-bottom: 26px;
  }

  .rbv-premium-editorial .rbv-heading-wrap p {
    font-size: 0.93rem;
    line-height: 1.62;
  }

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

  .rbv-premium-editorial .rbv-card {
    min-height: auto;
    padding: 22px;
  }

  .rbv-premium-editorial .rbv-cta {
    opacity: 0.82;
    transform: none;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rbv-premium-editorial .rbv-section {
    padding: 50px 14px;
  }

  .rbv-premium-editorial .rbv-heading-wrap {
    margin-bottom: 24px;
  }

  .rbv-premium-editorial .rbv-heading-wrap p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

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

  .rbv-premium-editorial .rbv-card {
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .rbv-premium-editorial .rbv-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    margin-bottom: 18px;
  }

  .rbv-premium-editorial .rbv-icon i {
    font-size: 1.08rem;
  }

  .rbv-premium-editorial .rbv-bg-number {
    font-size: 4rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rbv-premium-editorial .rbv-section {
    padding: 44px 12px;
  }

  .rbv-premium-editorial .rbv-heading-wrap {
    margin-bottom: 22px;
  }

  .rbv-premium-editorial .rbv-heading-wrap p {
    font-size: 0.87rem;
    line-height: 1.55;
  }

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

  .rbv-premium-editorial .rbv-card {
    min-height: auto;
    padding: 18px;
    border-radius: 15px;
  }

  .rbv-premium-editorial .rbv-card h3 {
    font-size: 0.96rem;
  }

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

  .rbv-premium-editorial .rbv-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .rbv-premium-editorial .rbv-icon i {
    font-size: 1rem;
  }

  .rbv-premium-editorial .rbv-bg-number {
    top: 10px;
    right: 14px;
    font-size: 3.45rem;
  }

  .rbv-premium-editorial .rbv-step-text,
  .rbv-premium-editorial .rbv-cta {
    font-size: 0.76rem;
  }
}

@media (max-width: 319px) {
  .rbv-premium-editorial .rbv-section {
    padding: 40px 10px;
  }

  .rbv-premium-editorial .rbv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .rbv-premium-editorial .rbv-card {
    min-height: auto;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rbv-premium-editorial .rbv-card,
  .rbv-premium-editorial .rbv-card::after,
  .rbv-premium-editorial .rbv-icon,
  .rbv-premium-editorial .rbv-cta,
  .rbv-premium-editorial .rbv-bg-number,
  .rbv-premium-editorial .rbv-card h3 {
    transition: none !important;
    animation: none !important;
  }

  .rbv-premium-editorial .rbv-card,
  .rbv-premium-editorial .rbv-card.rbv-visible,
  .rbv-premium-editorial .rbv-card:hover {
    transform: none !important;
  }
}