:root {
  --rv-red: #f51d3b;
  --rv-blue: #202946;
  --rv-ink: #121a34;
  --rv-cyan: #12b7c8;
  --rv-gold: #ffb703;
  --rv-green: #17a673;
  --rv-muted: #66708a;
  --rv-border: #edf0f5;
  --rv-surface: #ffffff;
  --rv-soft: #f7faff;
  --rv-shadow: 0 16px 42px rgba(32, 41, 70, 0.1);
  --rv-shadow-hover: 0 22px 52px rgba(32, 41, 70, 0.16);
  --rv-radius: 8px;
  --rv-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--rv-blue);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background:
    linear-gradient(180deg, #fff 0%, #fff8fa 34%, #f7fbff 100%);
}

img,
svg,
video,
iframe,
table {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 183, 200, 0.42);
  outline-offset: 3px;
}

.rv-container {
  width: min(calc(100% - 32px), var(--rv-container));
  margin-inline: auto;
}

.rv-main {
  min-height: 60vh;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rv-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(237, 240, 245, 0.95);
  box-shadow: 0 8px 28px rgba(32, 41, 70, 0.05);
  backdrop-filter: blur(16px);
}

.rv-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 28px;
}

.rv-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rv-blue);
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.rv-logo__mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, #253154 0%, #0b1634 72%),
    linear-gradient(135deg, var(--rv-red), var(--rv-cyan));
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(32, 41, 70, 0.18);
  font-size: 14px;
}

.rv-logo__text {
  display: grid;
  font-size: 26px;
  letter-spacing: 0;
}

.rv-logo__text small {
  color: var(--rv-red);
  font-size: 13px;
  font-weight: 800;
  justify-self: end;
}

.rv-logo__image {
  max-height: 52px;
  width: auto;
}

.rv-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rv-menu a {
  position: relative;
  color: var(--rv-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.rv-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rv-menu .current-menu-item > a,
.rv-menu a:hover {
  color: var(--rv-red);
}

.rv-menu .current-menu-item > a::after,
.rv-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.rv-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rv-mobile-account-actions {
  display: none;
}

.rv-login-link,
.rv-register-link {
  border: 0;
  cursor: pointer;
}

.rv-header-profile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rv-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.rv-header-profile img {
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--rv-border);
}

.rv-search-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--rv-border);
  cursor: pointer;
}

.rv-search-toggle::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 15px;
  height: 15px;
  border: 2px solid #0d1223;
  border-radius: 50%;
}

.rv-search-toggle::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 27px;
  width: 10px;
  height: 2px;
  background: #0d1223;
  transform: rotate(45deg);
  transform-origin: left center;
}

.rv-login-link,
.rv-register-link,
.rv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.rv-login-link {
  color: var(--rv-red);
}

.rv-register-link,
.rv-button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rv-red), #ff3857);
  box-shadow: 0 12px 24px rgba(245, 29, 59, 0.22);
}

.rv-register-link:hover,
.rv-button--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(245, 29, 59, 0.28);
}

.rv-menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rv-menu-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 11px;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--rv-blue);
  border-radius: 2px;
  transform-origin: center;
  transition: top 0.28s ease, transform 0.28s ease, opacity 0.2s ease, background-color 0.25s ease;
}

.rv-menu-toggle span:nth-child(1) {
  top: 14px;
}

.rv-menu-toggle span:nth-child(2) {
  top: 20px;
}

.rv-menu-toggle span:nth-child(3) {
  top: 26px;
}

.rv-menu-toggle.is-open {
  background: #fff5f7;
  border-color: rgba(245, 29, 59, 0.3);
  box-shadow: 0 8px 20px rgba(245, 29, 59, 0.12);
}

.rv-menu-toggle.is-open span:not(.screen-reader-text) {
  top: 20px;
  background: var(--rv-red);
}

.rv-menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.rv-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.rv-menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.rv-search-panel {
  border-top: 1px solid var(--rv-border);
  padding: 16px 0;
  background: #fff;
}

.rv-search-form {
  display: flex;
  gap: 12px;
}

.rv-search-form label {
  flex: 1;
}

.rv-search-field,
.rv-search-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
}

.rv-search-form button {
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  background: var(--rv-red);
  border: 0;
  border-radius: 8px;
}

.rv-hero {
  position: relative;
  padding: 64px 0 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.06) 0%, rgba(18, 183, 200, 0.08) 100%);
}

.rv-hero::before {
  content: "";
  position: absolute;
  inset: 18px 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 29, 59, 0.28), rgba(18, 183, 200, 0.28), transparent);
}

.rv-hero > * {
  position: relative;
}

.rv-hero h1 {
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--rv-ink);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.rv-hero h1 strong,
.rv-hero h1 em {
  color: var(--rv-red);
  font-style: normal;
}

.rv-hero p {
  max-width: 920px;
  margin: 0 auto 24px;
  color: var(--rv-blue);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
}

.rv-hero__label {
  font-size: 24px;
  font-weight: 500;
}

.rv-category-section {
  padding: 24px 0 64px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(32, 41, 70, 0.07);
}

.rv-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px;
  max-width: 980px;
  margin: 0 auto;
}

.rv-category-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 205px;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rv-category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan), var(--rv-gold));
  opacity: 0.9;
}

.rv-category-card:hover {
  border-color: rgba(18, 183, 200, 0.3);
  box-shadow: var(--rv-shadow-hover);
  transform: translateY(-5px);
}

.rv-category-card span:last-child {
  font-size: 30px;
  font-weight: 800;
}

.rv-category-card__icon {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
}

.rv-icon-hand::before,
.rv-icon-bank::before,
.rv-icon-card::before {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--rv-blue);
  font-size: 54px;
  line-height: 1;
}

.rv-icon-hand::before {
  content: "$";
  border: 4px solid currentColor;
  border-radius: 50%;
}

.rv-icon-bank::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 60px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.rv-icon-bank::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 22px;
  width: 54px;
  height: 42px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  background:
    linear-gradient(90deg, currentColor 0 4px, transparent 4px 16px, currentColor 16px 20px, transparent 20px 34px, currentColor 34px 38px, transparent 38px 50px, currentColor 50px 54px);
}

.rv-icon-card::before {
  content: "▱";
  font-size: 88px;
  transform: rotate(-12deg);
}

.rv-section {
  position: relative;
  padding: 72px 0;
}

.rv-section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.72);
}

.rv-section--compact {
  padding: 28px 0;
}

.rv-section-title {
  max-width: 1000px;
  margin: 0 auto 42px;
  color: var(--rv-blue);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.rv-section-kicker {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 12px;
  color: var(--rv-red);
  background: linear-gradient(90deg, rgba(245, 29, 59, 0.1), rgba(18, 183, 200, 0.1));
  border: 1px solid rgba(245, 29, 59, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-app-hub {
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.07) 0%, transparent 36%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.rv-app-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.rv-app-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-width: 0;
  min-height: 138px;
  align-content: center;
  gap: 8px;
  padding: 18px 12px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 25px rgba(32, 41, 70, 0.06);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rv-app-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rv-app-card:hover {
  border-color: rgba(245, 29, 59, 0.28);
  box-shadow: 0 18px 35px rgba(32, 41, 70, 0.1);
  transform: translateY(-4px);
}

.rv-app-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.rv-app-card span {
  display: inline-grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin: 0 auto;
  color: var(--rv-blue);
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-app-card__logo {
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--rv-border);
  box-shadow: 0 10px 24px rgba(32, 41, 70, 0.08);
}

.rv-app-card__logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.rv-app-card__logo.is-fallback {
  color: var(--rv-blue);
  background: transparent;
}

.rv-app-card strong {
  font-size: 16px;
  line-height: 1.2;
}

.rv-app-card small {
  color: var(--rv-muted);
  font-size: 12px;
  font-weight: 700;
}

.rv-keyword-clusters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.rv-keyword-clusters a {
  padding: 9px 13px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rv-keyword-clusters a:hover {
  color: #fff;
  background: var(--rv-red);
  border-color: var(--rv-red);
  transform: translateY(-2px);
}

.rv-loan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rv-loan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-width: 0;
  min-height: 410px;
  flex-direction: column;
  padding: 26px 16px 16px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 20px rgba(32, 41, 70, 0.07);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rv-loan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
}

.rv-loan-card:hover {
  border-color: rgba(245, 29, 59, 0.24);
  box-shadow: var(--rv-shadow-hover);
  transform: translateY(-4px);
}

.rv-loan-card__badge {
  position: absolute;
  left: 14px;
  top: -6px;
  min-width: 38px;
  padding: 10px 7px 15px;
  color: #fff;
  background: var(--rv-red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.rv-loan-card__badge.is-hot {
  background: linear-gradient(180deg, #ff8a3d, #ff5f1f);
}

.rv-loan-card__brand {
  display: flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #8530c8;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(32, 41, 70, 0.08);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.rv-loan-card__brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.rv-loan-card h3 {
  min-height: 44px;
  margin: 10px 0 12px;
  font-size: 15px;
  line-height: 1.35;
}

.rv-loan-card h3 a {
  color: inherit;
  text-decoration: none;
}

.rv-loan-card h3 a:hover {
  color: var(--rv-red);
}

.rv-loan-card__rating {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--rv-muted);
  font-size: 13px;
  white-space: nowrap;
}

.rv-stars {
  color: #ffb400;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(255, 183, 3, 0.24);
}

.rv-loan-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 14px;
}

.rv-loan-card__stats div {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 0 8px;
}

.rv-loan-card__stats div + div {
  border-left: 1px solid var(--rv-border);
}

.rv-loan-card__stats span,
.rv-loan-card__details dt {
  color: var(--rv-blue);
  font-size: 15px;
  font-weight: 800;
}

.rv-loan-card__stats strong {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;
}

.rv-loan-card__details {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
}

.rv-loan-card__details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  text-align: left;
}

.rv-loan-card__details dt,
.rv-loan-card__details dd {
  margin: 0;
  color: var(--rv-muted);
  font-size: 13px;
  line-height: 1.35;
}

.rv-loan-card__details dd {
  text-align: right;
  font-weight: 700;
}

.rv-loan-card p {
  min-height: 54px;
  margin: 0 0 14px;
  color: var(--rv-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.rv-loan-card .rv-button {
  width: 100%;
  margin-top: auto;
  text-transform: uppercase;
}

.rv-loan-card__detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 10px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.rv-loan-card__detail:hover {
  color: var(--rv-red);
  border-color: rgba(245, 29, 59, 0.28);
  transform: translateY(-1px);
}

.rv-placeholder-row {
  display: flex;
  justify-content: center;
  min-height: 84px;
  align-items: center;
}

.rv-placeholder-row a {
  color: var(--rv-red);
  font-weight: 800;
  text-decoration: none;
}

.rv-content {
  color: var(--rv-blue);
  font-size: 17px;
}

.rv-content > * {
  max-width: 100%;
}

.rv-content h1,
.rv-content h2,
.rv-content h3,
.rv-content h4 {
  color: var(--rv-blue);
  line-height: 1.25;
  letter-spacing: 0;
}

.rv-content h2 {
  margin-top: 34px;
  font-size: 30px;
}

.rv-content h3 {
  margin-top: 28px;
  font-size: 24px;
}

.rv-content p {
  margin: 0 0 18px;
}

.rv-content a {
  color: #0077ff;
  font-weight: 700;
}

.rv-content figure {
  margin: 28px auto;
  text-align: center;
}

.rv-content figcaption {
  color: #1d2238;
  font-size: 13px;
  text-align: center;
}

.rv-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rv-post-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 20px rgba(32, 41, 70, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rv-post-card:hover {
  border-color: rgba(18, 183, 200, 0.3);
  box-shadow: var(--rv-shadow-hover);
  transform: translateY(-4px);
}

.rv-post-card__image {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.85), rgba(18, 183, 200, 0.7)),
    var(--rv-blue);
  font-weight: 800;
  text-decoration: none;
}

.rv-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-post-card__body {
  padding: 18px;
}

.rv-post-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.rv-post-card h3 a {
  text-decoration: none;
}

.rv-post-card p {
  margin: 0;
  color: var(--rv-muted);
  font-size: 14px;
}

.rv-author-box {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  margin: 38px 0 26px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 25px rgba(32, 41, 70, 0.06);
}

.rv-author-box__avatar img {
  border-radius: 50%;
}

.rv-author-box__label {
  margin-bottom: 4px;
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-author-box h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.rv-author-box p {
  margin: 0 0 12px;
  color: var(--rv-muted);
}

.rv-author-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--rv-muted);
  font-size: 14px;
}

.rv-review-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 29, 59, 0.08), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(18, 183, 200, 0.11), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f9fbff 58%, #fff 100%);
}

.rv-review-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
}

.rv-review-hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 29, 59, 0.25), rgba(18, 183, 200, 0.25), transparent);
}

.rv-review-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.rv-review-hero__content .rv-section-kicker {
  margin-inline: 0;
}

.rv-review-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--rv-ink);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.rv-review-hero p {
  max-width: 730px;
  margin: 0;
  color: var(--rv-blue);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
}

.rv-review-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.rv-review-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 22px rgba(32, 41, 70, 0.07);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rv-review-hero__link:hover {
  color: var(--rv-red);
  border-color: rgba(245, 29, 59, 0.26);
  transform: translateY(-2px);
}

.rv-review-visual {
  position: relative;
  min-height: 460px;
}

.rv-review-phone {
  position: absolute;
  inset: 0 76px 0 38px;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 34px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.98)),
    #fff;
  border: 1px solid rgba(237, 240, 245, 0.9);
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(32, 41, 70, 0.18);
  animation: rv-review-phone 6s ease-in-out infinite;
}

.rv-review-phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(18, 183, 200, 0.14);
  border-radius: 24px;
  pointer-events: none;
}

.rv-review-phone__top {
  width: 72px;
  height: 8px;
  margin: 0 auto 8px;
  background: rgba(32, 41, 70, 0.14);
  border-radius: 999px;
}

.rv-review-score {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 28px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--rv-blue), #31406e 56%, var(--rv-red));
  border-radius: 22px;
}

.rv-review-score span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--rv-radius);
  font-size: 13px;
  font-weight: 800;
}

.rv-review-score strong {
  font-size: 58px;
  line-height: 1;
}

.rv-review-score small {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-review-bars {
  display: grid;
  gap: 12px;
}

.rv-review-bars span {
  display: block;
  height: 12px;
  overflow: hidden;
  background: #edf0f5;
  border-radius: 999px;
}

.rv-review-bars span::before {
  content: "";
  display: block;
  width: var(--rv-bar);
  height: 100%;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
  border-radius: inherit;
  animation: rv-review-bar 1.2s ease both;
}

.rv-review-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-review-pills span,
.rv-review-float {
  padding: 8px 11px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(32, 41, 70, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.rv-review-float {
  position: absolute;
  animation: rv-review-float 4.8s ease-in-out infinite;
}

.rv-review-float--one {
  left: 0;
  top: 78px;
}

.rv-review-float--two {
  right: 12px;
  top: 198px;
  color: var(--rv-red);
}

.rv-review-float--three {
  left: 36px;
  bottom: 74px;
  color: var(--rv-cyan);
}

.rv-review-section {
  padding: 68px 0;
}

.rv-review-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.rv-review-heading span,
.rv-review-cluster-copy span,
.rv-review-method-card span,
.rv-review-warning__inner span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rv-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-review-heading h2,
.rv-review-cluster-copy h2,
.rv-review-method-card h2,
.rv-review-warning__inner h2 {
  margin: 0 0 12px;
  color: var(--rv-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.rv-review-heading p,
.rv-review-cluster-copy p,
.rv-review-method-card p,
.rv-review-warning__inner p {
  margin: 0;
  color: var(--rv-muted);
  font-size: 16px;
  font-weight: 500;
}

.rv-review-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rv-review-app-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 10px;
  padding: 24px;
  color: var(--rv-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 12px 28px rgba(32, 41, 70, 0.07);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition-delay: var(--rv-delay, 0ms);
}

.rv-review-app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan), var(--rv-gold));
}

.rv-review-app-card:hover {
  border-color: rgba(245, 29, 59, 0.24);
  box-shadow: var(--rv-shadow-hover);
  transform: translateY(-5px);
}

.rv-review-app-card span {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--rv-blue);
  background: transparent;
  border-radius: var(--rv-radius);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-review-app-card__logo {
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--rv-border);
  box-shadow: 0 10px 24px rgba(32, 41, 70, 0.08);
}

.rv-review-app-card__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.rv-review-app-card__logo.is-fallback {
  color: var(--rv-blue);
  background: transparent;
}

.rv-review-app-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.rv-review-app-card small {
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rv-review-clusters {
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.06), rgba(18, 183, 200, 0.08)),
    #fff;
}

.rv-review-cluster-grid,
.rv-review-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.rv-review-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rv-review-keywords a {
  padding: 12px 15px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(32, 41, 70, 0.06);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.rv-review-keywords a:hover {
  color: #fff;
  background: var(--rv-red);
  transform: translateY(-2px);
}

.rv-review-method-card,
.rv-review-checklist,
.rv-review-warning__inner {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
}

.rv-review-checklist {
  display: grid;
  gap: 14px;
}

.rv-review-checklist div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #f9fbff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
}

.rv-review-checklist span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rv-green), var(--rv-cyan));
  border-radius: 50%;
  font-weight: 800;
}

.rv-review-checklist p {
  margin: 0;
  color: var(--rv-blue);
  font-weight: 700;
  line-height: 1.45;
}

.rv-review-offers {
  background: rgba(255, 255, 255, 0.72);
}

.rv-review-warning {
  padding-bottom: 88px;
}

.rv-review-warning__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(32, 41, 70, 0.96), rgba(32, 41, 70, 0.9)),
    var(--rv-blue);
}

.rv-review-warning__inner h2,
.rv-review-warning__inner p {
  color: #fff;
}

.rv-review-warning__inner span {
  color: var(--rv-gold);
}

@keyframes rv-review-phone {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(10px) rotate(1deg);
  }
}

@keyframes rv-review-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rv-review-bar {
  from {
    width: 0;
  }
}

.rv-offer-archive {
  background:
    radial-gradient(circle at 10% 12%, rgba(245, 29, 59, 0.08), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(18, 183, 200, 0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 58%, #fff 100%);
}

.rv-offer-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 54px;
}

.rv-offer-archive-hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 29, 59, 0.24), rgba(18, 183, 200, 0.24), transparent);
}

.rv-offer-archive-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 50px;
  align-items: center;
}

.rv-offer-archive-hero__content .rv-section-kicker {
  margin-inline: 0;
}

.rv-offer-archive-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--rv-ink);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.rv-offer-archive-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--rv-blue);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
}

.rv-offer-archive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.rv-offer-archive-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 22px rgba(32, 41, 70, 0.07);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rv-offer-archive-hero__link:hover {
  color: var(--rv-red);
  border-color: rgba(245, 29, 59, 0.26);
  transform: translateY(-2px);
}

.rv-offer-archive-visual {
  position: relative;
  min-height: 390px;
}

.rv-offer-archive-meter {
  position: absolute;
  inset: 26px 50px 26px 28px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--rv-blue), #31406e 52%, var(--rv-red)),
    var(--rv-blue);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(32, 41, 70, 0.2);
  animation: rv-offer-archive-meter 6s ease-in-out infinite;
}

.rv-offer-archive-meter::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  pointer-events: none;
}

.rv-offer-archive-meter > span {
  position: relative;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
}

.rv-offer-archive-meter strong {
  position: relative;
  max-width: 220px;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.rv-offer-archive-meter div {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.rv-offer-archive-meter i {
  display: block;
  height: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.rv-offer-archive-meter i::before {
  content: "";
  display: block;
  width: var(--rv-meter);
  height: 100%;
  background: linear-gradient(90deg, #fff, var(--rv-cyan));
  border-radius: inherit;
  animation: rv-review-bar 1.1s ease both;
}

.rv-offer-archive-chip {
  position: absolute;
  padding: 9px 12px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(32, 41, 70, 0.1);
  font-size: 13px;
  font-weight: 800;
  animation: rv-review-float 4.8s ease-in-out infinite;
}

.rv-offer-archive-chip--one {
  left: 0;
  top: 80px;
}

.rv-offer-archive-chip--two {
  right: 0;
  top: 180px;
  color: var(--rv-red);
}

.rv-offer-archive-chip--three {
  left: 36px;
  bottom: 58px;
  color: var(--rv-cyan);
}

.rv-offer-archive-section {
  padding: 66px 0;
}

.rv-offer-archive-intro {
  background: rgba(255, 255, 255, 0.76);
}

.rv-offer-archive-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.rv-offer-archive-panel,
.rv-offer-archive-criteria,
.rv-offer-archive-warning__inner {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
}

.rv-offer-archive-panel span,
.rv-offer-archive-heading span,
.rv-offer-archive-warning__inner span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rv-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-offer-archive-panel h2,
.rv-offer-archive-heading h2,
.rv-offer-archive-warning__inner h2 {
  margin: 0 0 12px;
  color: var(--rv-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.rv-offer-archive-panel p,
.rv-offer-archive-heading p,
.rv-offer-archive-warning__inner p {
  margin: 0;
  color: var(--rv-muted);
  font-size: 16px;
  font-weight: 500;
}

.rv-offer-archive-criteria {
  display: grid;
  gap: 14px;
}

.rv-offer-archive-criteria div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #f9fbff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
}

.rv-offer-archive-criteria span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rv-green), var(--rv-cyan));
  border-radius: 50%;
  font-weight: 800;
}

.rv-offer-archive-criteria p {
  margin: 0;
  color: var(--rv-blue);
  font-weight: 700;
  line-height: 1.45;
}

.rv-offer-archive-links {
  padding-bottom: 34px;
}

.rv-offer-archive-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.rv-offer-archive-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.rv-offer-archive-quicklinks a {
  padding: 12px 15px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(32, 41, 70, 0.06);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.rv-offer-archive-quicklinks a:hover {
  color: #fff;
  background: var(--rv-red);
  transform: translateY(-2px);
}

.rv-offer-archive-list {
  padding-top: 34px;
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.05), rgba(18, 183, 200, 0.07)),
    rgba(255, 255, 255, 0.76);
}

.rv-offer-archive-empty {
  text-align: center;
  font-weight: 800;
}

.rv-offer-archive-warning {
  padding-bottom: 88px;
}

.rv-offer-archive-warning__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(32, 41, 70, 0.96), rgba(32, 41, 70, 0.9)),
    var(--rv-blue);
}

.rv-offer-archive-warning__inner h2,
.rv-offer-archive-warning__inner p {
  color: #fff;
}

.rv-offer-archive-warning__inner span {
  color: var(--rv-gold);
}

@keyframes rv-offer-archive-meter {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(10px) rotate(-1deg);
  }
}

.rv-not-found {
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 29, 59, 0.08), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(18, 183, 200, 0.11), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 60%, #fff 100%);
}

.rv-404-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
}

.rv-404-hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 29, 59, 0.24), rgba(18, 183, 200, 0.24), transparent);
}

.rv-404-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.66fr);
  gap: 52px;
  align-items: center;
}

.rv-404-hero__content .rv-section-kicker {
  margin-inline: 0;
}

.rv-404-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--rv-ink);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.rv-404-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--rv-blue);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
}

.rv-404-search {
  max-width: 650px;
  margin-top: 28px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 18px 38px rgba(32, 41, 70, 0.09);
}

.rv-404-search .rv-search-form {
  gap: 10px;
}

.rv-404-search .rv-search-field,
.rv-404-search .rv-search-form button {
  min-height: 52px;
}

.rv-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.rv-404-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 22px rgba(32, 41, 70, 0.07);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rv-404-link:hover {
  color: var(--rv-red);
  border-color: rgba(245, 29, 59, 0.26);
  transform: translateY(-2px);
}

.rv-404-visual {
  position: relative;
  min-height: 420px;
}

.rv-404-code {
  position: absolute;
  inset: 22px 44px 92px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--rv-blue), #31406e 54%, var(--rv-red)),
    var(--rv-blue);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(32, 41, 70, 0.2);
  animation: rv-404-panel 6s ease-in-out infinite;
}

.rv-404-code::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
}

.rv-404-code span,
.rv-404-code strong {
  position: relative;
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
}

.rv-404-code strong {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--rv-blue);
  background: #fff;
  border-radius: 50%;
}

.rv-404-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 240px;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
}

.rv-404-card span {
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-404-card strong {
  color: var(--rv-blue);
  font-size: 17px;
  line-height: 1.25;
}

.rv-404-card i {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
  border-radius: 999px;
}

.rv-404-card i:nth-child(4) {
  width: 78%;
}

.rv-404-card i:nth-child(5) {
  width: 58%;
}

.rv-404-float {
  position: absolute;
  padding: 9px 12px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(32, 41, 70, 0.1);
  font-size: 13px;
  font-weight: 800;
  animation: rv-review-float 4.8s ease-in-out infinite;
}

.rv-404-float--one {
  left: 0;
  top: 90px;
}

.rv-404-float--two {
  right: 8px;
  top: 166px;
  color: var(--rv-red);
}

.rv-404-float--three {
  left: 42px;
  bottom: 92px;
  color: var(--rv-cyan);
}

.rv-404-section {
  padding: 62px 0;
}

.rv-404-section--soft {
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.06), rgba(18, 183, 200, 0.08)),
    rgba(255, 255, 255, 0.76);
}

.rv-404-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.rv-404-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rv-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-404-heading h2 {
  margin: 0;
  color: var(--rv-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.rv-404-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rv-404-suggestion {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 180px;
  align-content: start;
  gap: 10px;
  padding: 24px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 12px 28px rgba(32, 41, 70, 0.07);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rv-404-suggestion::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan), var(--rv-gold));
}

.rv-404-suggestion:hover {
  border-color: rgba(245, 29, 59, 0.24);
  box-shadow: var(--rv-shadow-hover);
  transform: translateY(-5px);
}

.rv-404-suggestion span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rv-blue), #31406e);
  border-radius: var(--rv-radius);
  font-size: 13px;
  font-weight: 800;
}

.rv-404-suggestion strong {
  font-size: 22px;
  line-height: 1.2;
}

.rv-404-suggestion small {
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rv-404-keyword-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.rv-404-keyword-wrap .rv-404-heading {
  margin: 0;
  text-align: left;
}

.rv-404-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rv-404-keywords a {
  padding: 12px 15px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(32, 41, 70, 0.06);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.rv-404-keywords a:hover {
  color: #fff;
  background: var(--rv-red);
  transform: translateY(-2px);
}

@keyframes rv-404-panel {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(10px) rotate(1deg);
  }
}

.rv-reveal,
.rv-loan-card,
.rv-app-card,
.rv-post-card {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
}

.rv-reveal.is-visible,
.rv-loan-card.is-visible,
.rv-app-card.is-visible,
.rv-post-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (prefers-reduced-motion: reduce) {
  .rv-reveal,
  .rv-loan-card,
  .rv-app-card,
  .rv-post-card,
  .rv-reveal.is-visible,
  .rv-loan-card.is-visible,
  .rv-app-card.is-visible,
  .rv-post-card.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rv-offer-collapse__body {
    transition: none;
  }

  .rv-about-phone,
  .rv-about-float,
  .rv-review-phone,
  .rv-review-float,
  .rv-review-bars span::before,
  .rv-offer-archive-meter,
  .rv-offer-archive-chip,
  .rv-offer-archive-meter i::before,
  .rv-404-code,
  .rv-404-float {
    animation: none;
  }
}

/* Authentication modal and member profile */
body.rv-modal-open {
  overflow: hidden;
}

.rv-auth-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 0.3s, opacity 0.25s ease;
}

.rv-auth-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.rv-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 35, 0.72);
  backdrop-filter: blur(5px);
}

.rv-auth-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(13, 18, 35, 0.32);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.32s ease;
}

.rv-auth-modal.is-open .rv-auth-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rv-auth-modal__close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 18, 35, 0.1);
  border-radius: 50%;
  cursor: pointer;
}

.rv-auth-modal__close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 17px;
  height: 2px;
  background: var(--rv-blue);
}

.rv-auth-modal__close span:first-child {
  transform: rotate(45deg);
}

.rv-auth-modal__close span:last-child {
  transform: rotate(-45deg);
}

.rv-auth-modal__forms {
  min-height: 650px;
  padding: 42px 50px;
}

.rv-auth-form {
  display: none;
}

.rv-auth-form.is-active {
  display: grid;
  animation: rv-auth-form-in 0.3s ease both;
}

.rv-auth-form__eyebrow {
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-auth-form h2 {
  margin: 6px 0 4px;
  color: var(--rv-blue);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
}

.rv-auth-form > p {
  margin: 0 0 18px;
  color: var(--rv-muted);
  font-size: 14px;
}

.rv-auth-form > label:not(.rv-auth-consent) {
  display: grid;
  gap: 7px;
  margin-top: 13px;
  color: var(--rv-blue);
  font-size: 13px;
  font-weight: 700;
}

.rv-auth-form input[type="text"],
.rv-auth-form input[type="tel"],
.rv-auth-form input[type="email"],
.rv-auth-form input[type="password"] {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid #d8dce5;
  border-radius: 7px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rv-auth-form input:focus {
  border-color: var(--rv-cyan);
  box-shadow: 0 0 0 3px rgba(18, 183, 200, 0.12);
}

.rv-auth-password {
  position: relative;
}

.rv-auth-password input {
  padding-right: 48px !important;
}

.rv-auth-password button {
  position: absolute;
  right: 8px;
  bottom: 7px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.rv-auth-password button::before {
  position: absolute;
  inset: 9px 5px;
  content: "";
  border: 2px solid var(--rv-muted);
  border-radius: 50% 0;
  transform: rotate(45deg);
}

.rv-auth-password button.is-visible::after {
  position: absolute;
  top: 7px;
  left: 15px;
  width: 2px;
  height: 19px;
  content: "";
  background: var(--rv-red);
  transform: rotate(45deg);
}

.rv-auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  color: var(--rv-muted);
  font-size: 12px;
  line-height: 1.55;
}

.rv-auth-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.rv-auth-consent a,
.rv-auth-switch button {
  color: var(--rv-red);
  font-weight: 700;
}

.rv-auth-submit {
  height: 48px;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: var(--rv-red);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(245, 29, 59, 0.2);
}

.rv-auth-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.rv-auth-switch {
  margin-top: 17px;
  color: var(--rv-muted);
  font-size: 13px;
  text-align: center;
}

.rv-auth-switch button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.rv-auth-message {
  min-height: 0;
  color: var(--rv-muted);
  font-size: 12px;
}

.rv-auth-message:not(:empty) {
  margin: 10px 0 0;
  padding: 9px 11px;
  background: #f4f7fa;
  border-radius: 6px;
}

.rv-auth-message.is-error {
  color: #a1162b;
  background: #fff0f2;
}

.rv-auth-message.is-success {
  color: #116437;
  background: #edf9f2;
}

.rv-auth-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.rv-auth-modal__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 48px;
  color: #fff;
  background: #1c2741;
}

.rv-auth-modal__aside .rv-logo {
  margin-bottom: 42px;
}

.rv-auth-modal__visual {
  display: grid;
  min-height: 170px;
  margin-bottom: 30px;
  padding: 25px;
  place-content: center;
  text-align: center;
  background: #263658;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.rv-auth-modal__visual span {
  color: var(--rv-cyan);
  font-size: 50px;
  font-weight: 800;
}

.rv-auth-modal__visual strong {
  font-size: 16px;
}

.rv-auth-modal__aside h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
}

.rv-auth-modal__aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}

.rv-auth-modal__aside li {
  position: relative;
  padding-left: 22px;
}

.rv-auth-modal__aside li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
  height: 6px;
  content: "";
  border-bottom: 2px solid var(--rv-cyan);
  border-left: 2px solid var(--rv-cyan);
  transform: rotate(-45deg);
}

.rv-account {
  min-height: 70vh;
  padding: 54px 0 80px;
  background: #f8fafc;
}

.rv-account__heading span {
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-account__heading h1 {
  margin: 5px 0 28px;
  color: var(--rv-red);
  font-size: 42px;
  letter-spacing: 0;
}

.rv-account-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.rv-account-nav {
  display: grid;
  gap: 6px;
}

.rv-account-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 14px;
  color: var(--rv-blue);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 7px;
}

.rv-account-nav a span {
  width: 22px;
  color: var(--rv-blue);
  font-size: 22px;
  text-align: center;
}

.rv-account-nav a.is-active {
  color: var(--rv-red);
  font-weight: 800;
  background: #fff;
  border-color: var(--rv-border);
  box-shadow: 0 8px 24px rgba(32, 41, 70, 0.05);
}

.rv-account-nav a.is-active span {
  color: var(--rv-red);
}

.rv-account-panel {
  min-height: 500px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(32, 41, 70, 0.05);
}

.rv-account-user {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rv-border);
}

.rv-account-user img {
  border-radius: 8px;
}

.rv-account-user h2 {
  margin: 0 0 2px;
  color: var(--rv-blue);
  font-size: 23px;
  letter-spacing: 0;
}

.rv-account-user p {
  margin: 0 0 4px;
  color: var(--rv-blue);
}

.rv-account-user span {
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 700;
}

.rv-profile-form {
  padding-top: 24px;
}

.rv-profile-form h2 {
  margin: 0 0 24px;
  color: var(--rv-red);
  font-size: 18px;
  letter-spacing: 0;
}

.rv-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
}

.rv-profile-form label,
.rv-profile-form fieldset {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--rv-blue);
  font-size: 12px;
  font-weight: 700;
}

.rv-profile-form input[type="text"],
.rv-profile-form input[type="tel"],
.rv-profile-form input[type="date"],
.rv-profile-form input[type="password"],
.rv-profile-form fieldset {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  color: var(--rv-blue);
  font-size: 14px;
  background: #fff;
  border: 1px solid #aeb4c0;
  border-radius: 7px;
}

.rv-profile-form fieldset {
  height: auto;
  min-height: 46px;
}

.rv-profile-form legend {
  padding: 0 4px;
  font-size: 12px;
}

.rv-profile-form fieldset div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  min-height: 32px;
}

.rv-profile-form fieldset label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--rv-muted);
}

.rv-profile-form > .rv-button {
  min-width: 170px;
  margin-top: 30px;
  margin-left: auto;
  border: 0;
}

.rv-password-form {
  display: grid;
  max-width: 480px;
  gap: 18px;
}

.rv-password-form > .rv-button {
  margin-top: 8px;
}

.rv-account-empty {
  display: grid;
  min-height: 330px;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.rv-account-empty > span {
  color: var(--rv-cyan);
  font-size: 60px;
}

.rv-account-empty h2 {
  margin: 8px 0;
  color: var(--rv-blue);
  font-size: 22px;
  letter-spacing: 0;
}

.rv-account-empty p {
  margin: 0 0 20px;
  color: var(--rv-muted);
}

.rv-account-notice {
  margin-bottom: 20px;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 7px;
}

.rv-account-notice.is-success {
  color: #116437;
  background: #edf9f2;
}

.rv-account-notice.is-error {
  color: #a1162b;
  background: #fff0f2;
}

@keyframes rv-auth-form-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .rv-auth-modal__dialog {
    grid-template-columns: minmax(0, 1fr);
    width: min(540px, 100%);
  }

  .rv-auth-modal__aside {
    display: none;
  }

  .rv-auth-modal__forms {
    min-height: 0;
  }

  .rv-account-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-account-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .rv-account-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 600px) {
  .rv-auth-modal {
    align-items: end;
    padding: 0;
  }

  .rv-auth-modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
  }

  .rv-auth-modal.is-open .rv-auth-modal__dialog {
    transform: translateY(0);
  }

  .rv-auth-modal__forms {
    padding: 34px 20px 26px;
  }

  .rv-auth-form h2 {
    font-size: 30px;
  }

  .rv-account {
    padding: 32px 0 52px;
  }

  .rv-account__heading h1 {
    font-size: 32px;
  }

  .rv-account-panel {
    min-height: 0;
    padding: 18px 14px;
  }

  .rv-account-user {
    gap: 13px;
  }

  .rv-account-user img {
    width: 76px;
    height: 76px;
  }

  .rv-account-user h2 {
    font-size: 19px;
  }

  .rv-account-user p {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .rv-profile-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .rv-profile-form > .rv-button {
    width: 100%;
  }
}

.rv-single {
  padding: 48px 0 72px;
}

.rv-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
}

.rv-article {
  min-width: 0;
}

.rv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
}

.rv-breadcrumb a {
  color: var(--rv-blue);
  text-decoration: none;
}

.rv-article-header h1 {
  margin: 0 0 18px;
  color: var(--rv-red);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.rv-article-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--rv-blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-toc {
  margin: 0 0 26px;
  padding: 22px 24px;
  background: var(--rv-soft);
}

.rv-toc h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
}

.rv-toc ol {
  margin: 0;
  padding-left: 20px;
}

.rv-toc li {
  margin: 6px 0;
  font-weight: 700;
}

.rv-toc a {
  color: #111;
  text-decoration: none;
}

.rv-toc__level-3 {
  margin-left: 22px;
}

.rv-single-sidebar {
  min-width: 0;
}

.rv-sidebar-card,
.rv-widget {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 20px rgba(32, 41, 70, 0.06);
}

.rv-sidebar-card h2,
.rv-widget__title {
  margin: 0 0 18px;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.rv-latest-list {
  margin: 0;
  padding-left: 26px;
}

.rv-latest-list li {
  margin-bottom: 14px;
  color: var(--rv-red);
  font-size: 24px;
  font-weight: 800;
}

.rv-latest-list a {
  color: var(--rv-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.rv-sidebar-offer {
  margin-top: 20px;
}

.rv-sidebar-offer .rv-loan-card {
  min-height: 0;
}

.rv-offer-single {
  background:
    linear-gradient(135deg, rgba(245, 29, 59, 0.05) 0%, rgba(18, 183, 200, 0.07) 42%, transparent 78%),
    linear-gradient(180deg, #fff 0%, #fff7f9 360px, #f7faff 100%);
}

.rv-offer-hero {
  padding: 34px 0 42px;
}

.rv-offer-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.rv-offer-card {
  position: sticky;
  top: 116px;
  min-width: 0;
  padding: 28px 18px 18px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rv-offer-card:hover {
  box-shadow: var(--rv-shadow-hover);
  transform: translateY(-2px);
}

.rv-offer-card__badge {
  position: absolute;
  left: 16px;
  top: -6px;
  min-width: 42px;
  padding: 11px 7px 16px;
  color: #fff;
  background: var(--rv-red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.rv-offer-card__badge.is-hot {
  background: #ff7a2f;
}

.rv-offer-card__logo {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  color: #8530c8;
  font-size: 24px;
  font-weight: 800;
}

.rv-offer-card__logo img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.rv-offer-card h2 {
  margin: 14px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.rv-offer-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
}

.rv-offer-card__rating strong {
  color: var(--rv-blue);
}

.rv-offer-card__money {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 16px;
}

.rv-offer-card__money div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 0 10px;
}

.rv-offer-card__money div + div {
  border-left: 1px solid var(--rv-border);
}

.rv-offer-card__money span,
.rv-offer-card__meta dt {
  color: var(--rv-blue);
  font-size: 15px;
  font-weight: 800;
}

.rv-offer-card__money strong {
  font-size: 28px;
  line-height: 1.15;
}

.rv-offer-card__meta {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
}

.rv-offer-card__meta div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px;
}

.rv-offer-card__meta dt,
.rv-offer-card__meta dd {
  margin: 0;
  color: var(--rv-muted);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
}

.rv-offer-card__meta dd {
  text-align: right;
  font-weight: 800;
}

.rv-offer-card p {
  margin: 0 0 16px;
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rv-offer-card .rv-button,
.rv-offer-sticky .rv-button {
  width: 100%;
  text-transform: uppercase;
}

.rv-offer-detail {
  min-width: 0;
  padding: 12px 0 0;
}

.rv-eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 14px;
  color: var(--rv-red);
  background: #ffe9ee;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-offer-detail h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--rv-red);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rv-offer-lead {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--rv-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.rv-offer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rv-offer-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(32, 41, 70, 0.06);
}

.rv-offer-body {
  padding: 0 0 72px;
}

.rv-offer-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.rv-offer-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.rv-offer-info-block,
.rv-offer-sticky__inner {
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 26px rgba(32, 41, 70, 0.06);
}

.rv-offer-info-block {
  border-top: 3px solid rgba(245, 29, 59, 0.7);
}

.rv-offer-info-block {
  overflow: hidden;
}

.rv-offer-info-block h2 {
  margin: 0;
  padding: 20px 24px;
  color: #fff;
  background: var(--rv-red);
  font-size: 22px;
  line-height: 1.25;
}

.rv-offer-info-panel {
  overflow: hidden;
}

.rv-offer-info-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid var(--rv-border);
}

.rv-offer-info-panel__header span {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-offer-info-panel__header h2 {
  margin: 0;
  padding: 0;
  color: var(--rv-blue);
  background: transparent;
  font-size: 24px;
  line-height: 1.2;
}

.rv-offer-info-panel__header p {
  max-width: 360px;
  margin: 0;
  color: var(--rv-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.rv-offer-info-panel__items {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fbfcff;
}

.rv-offer-collapse {
  display: block;
}

.rv-offer-collapse summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 20px 24px;
  color: #fff;
  background: var(--rv-red);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}

.rv-offer-collapse summary::-webkit-details-marker {
  display: none;
}

.rv-offer-collapse__icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.rv-offer-collapse__icon::before,
.rv-offer-collapse__icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.rv-offer-collapse__icon::after {
  transform: rotate(90deg);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.rv-offer-collapse[open] .rv-offer-collapse__icon::after {
  opacity: 0;
  transform: rotate(0deg);
}

.rv-offer-collapse__body {
  background: #fff;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.rv-offer-mini-collapse {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
}

.rv-offer-mini-collapse summary {
  min-height: 52px;
  padding: 13px 16px;
  color: var(--rv-blue);
  background: #fff;
  font-size: 16px;
  border-bottom: 0;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.rv-offer-mini-collapse summary:hover {
  background: #fff8fa;
}

.rv-offer-mini-collapse[open] summary {
  border-bottom: 1px solid var(--rv-border);
  color: var(--rv-red);
}

.rv-offer-mini-collapse .rv-offer-collapse__icon {
  width: 26px;
  height: 26px;
  background: #ffe9ee;
  border-color: #ffd4dc;
}

.rv-offer-mini-collapse .rv-offer-collapse__icon::before,
.rv-offer-mini-collapse .rv-offer-collapse__icon::after {
  left: 7px;
  top: 12px;
  background: var(--rv-red);
}

.rv-offer-table-wrap {
  overflow-x: auto;
}

.rv-offer-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.rv-offer-table th,
.rv-offer-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--rv-border);
  vertical-align: top;
}

.rv-offer-table th {
  width: 235px;
  color: var(--rv-blue);
  background: #fbfcff;
  font-size: 15px;
  text-align: left;
}

.rv-offer-table td {
  color: var(--rv-muted);
  font-size: 15px;
  font-weight: 650;
}

.rv-offer-table ul,
.rv-offer-table p {
  margin-top: 0;
}

.rv-offer-table ul:last-child,
.rv-offer-table p:last-child {
  margin-bottom: 0;
}

.rv-offer-table--compact th,
.rv-offer-table--compact td {
  padding: 12px 16px;
  font-size: 14px;
}

.rv-offer-table--compact th {
  width: 210px;
}

.rv-offer-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.rv-offer-highlight {
  min-width: 0;
  padding: 18px;
  background: var(--rv-soft);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
}

.rv-offer-highlight strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.rv-offer-highlight p {
  margin: 0;
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.rv-offer-highlight-grid--compact {
  padding: 14px;
}

.rv-offer-highlight-grid--compact .rv-offer-highlight {
  padding: 14px;
}

.rv-offer-info-block .rv-content {
  padding: 24px;
}

.rv-offer-review-block {
  overflow: hidden;
}

.rv-offer-review-block__header {
  border-bottom: 1px solid var(--rv-border);
}

.rv-offer-review-tools {
  display: grid;
  gap: 18px;
  padding: 0 24px 24px;
}

.rv-offer-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: var(--rv-soft);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
}

.rv-offer-share strong {
  font-size: 16px;
}

.rv-offer-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-offer-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 13px 7px 9px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(32, 41, 70, 0.1);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.rv-offer-share__link:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.rv-offer-share__icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: inherit;
}

.rv-offer-share__icon svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.rv-offer-share__link--facebook {
  background: #1877f2;
}

.rv-offer-share__link--x {
  background: #000;
}

.rv-offer-share__link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.rv-offer-share__link--threads {
  background: #101010;
}

.rv-offer-share__link--linkedin {
  background: #0a66c2;
}

.rv-offer-editor-profile {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 20px rgba(32, 41, 70, 0.05);
}

.rv-offer-editor-profile .rv-offer-editor-profile__avatar span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #253154, #0b1634);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.rv-offer-editor-profile span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-offer-editor-profile h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.rv-offer-editor-profile p {
  margin: 0 0 12px;
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.rv-offer-editor-profile ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
}

.rv-offer-editor-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-offer-editor-profile__meta span {
  margin: 0;
  padding: 7px 10px;
  color: var(--rv-blue);
  background: var(--rv-soft);
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  font-size: 12px;
  text-transform: none;
}

.rv-offer-sticky {
  min-width: 0;
}

.rv-offer-sticky__inner {
  position: sticky;
  top: 116px;
  padding: 22px;
  border-top: 3px solid var(--rv-cyan);
}

.rv-offer-sticky h2 {
  margin: 0 0 16px;
  font-size: 20px;
  text-align: center;
}

.rv-offer-sticky ul {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.rv-offer-sticky li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rv-border);
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 700;
}

.rv-offer-sticky li strong {
  color: var(--rv-blue);
  text-align: right;
}

.rv-offer-sticky p {
  margin: 14px 0 0;
  color: var(--rv-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.rv-offer-source {
  display: inline-flex;
  margin-top: 12px;
  color: var(--rv-red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.rv-page,
.rv-archive {
  padding: 50px 0 72px;
}

.rv-page-content {
  max-width: 860px;
}

.rv-page-content h1,
.rv-archive-header h1 {
  margin: 0 0 28px;
  color: var(--rv-red);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0;
}

.rv-archive-header {
  margin-bottom: 34px;
}

.rv-site-footer {
  position: relative;
  margin-top: 56px;
  color: #fff;
  background: #172033;
  border-top: 4px solid var(--rv-red);
}

.rv-site-footer::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 34%;
  height: 4px;
  content: "";
  background: var(--rv-cyan);
}

.rv-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: 46px;
  padding: 54px 0 42px;
}

.rv-logo--footer {
  color: #fff;
}

.rv-footer-brand > p,
.rv-footer-connect > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.rv-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.rv-footer-email svg {
  width: 20px;
  height: 20px;
  fill: var(--rv-cyan);
}

.rv-footer-email:hover {
  color: var(--rv-cyan);
}

.rv-footer-column h2 {
  position: relative;
  margin: 5px 0 20px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}

.rv-footer-column h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--rv-cyan);
}

.rv-footer-menu {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rv-footer-menu a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.rv-footer-menu a:hover {
  color: #fff;
  transform: translateX(3px);
}

.rv-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.rv-footer-social {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 7px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.rv-footer-social:hover {
  color: #fff;
  filter: brightness(1.13);
  transform: translateY(-3px);
}

.rv-footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.rv-footer-social--facebook {
  background: #1877f2;
}

.rv-footer-social--zalo {
  background: #0068ff;
}

.rv-footer-social--tiktok {
  background: #111;
}

.rv-footer-social--instagram {
  background: #c13584;
}

.rv-footer-social--youtube {
  background: #f00;
}

.rv-footer-dmca {
  display: inline-flex;
  margin-top: 22px;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
}

.rv-footer-dmca img {
  display: block;
  width: 100px;
  height: 20px;
}

.rv-footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rv-footer-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

.rv-footer-disclaimer p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.75;
}

.rv-footer-bottom {
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rv-footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  line-height: 1.6;
}

.navigation.pagination {
  margin-top: 36px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  text-decoration: none;
}

.page-numbers.current {
  color: #fff;
  background: var(--rv-red);
  border-color: var(--rv-red);
}

.rv-about-page {
  background: linear-gradient(180deg, #fff 0%, #fff7f9 420px, #f7faff 100%);
}

.rv-about-hero {
  padding: 56px 0 40px;
}

.rv-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
}

.rv-about-kicker,
.rv-about-card span,
.rv-about-heading span,
.rv-about-editor span {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--rv-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-about-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--rv-red);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.rv-about-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--rv-blue);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}

.rv-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rv-about-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--rv-blue);
  font-weight: 800;
  text-decoration: none;
}

.rv-about-hero__visual {
  position: relative;
  min-height: 440px;
}

.rv-about-phone {
  position: absolute;
  inset: 20px 54px 0;
  padding: 16px;
  background: #101936;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(32, 41, 70, 0.22);
  animation: rv-about-float 5s ease-in-out infinite;
}

.rv-about-phone__bar {
  width: 92px;
  height: 8px;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.rv-about-phone__screen {
  display: grid;
  gap: 14px;
  height: calc(100% - 26px);
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #fff5f7 100%);
  border-radius: 18px;
}

.rv-about-phone__screen span {
  color: var(--rv-red);
  font-weight: 800;
}

.rv-about-phone__screen strong {
  color: var(--rv-blue);
  font-size: 32px;
  line-height: 1.12;
}

.rv-about-phone__screen div {
  height: 58px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 18px rgba(32, 41, 70, 0.07);
}

.rv-about-float {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: var(--rv-shadow);
  font-size: 13px;
  font-weight: 800;
  animation: rv-about-badge 4s ease-in-out infinite;
}

.rv-about-float--one {
  top: 54px;
  left: 0;
}

.rv-about-float--two {
  right: 10px;
  top: 170px;
  animation-delay: 0.35s;
}

.rv-about-float--three {
  left: 34px;
  bottom: 64px;
  animation-delay: 0.7s;
}

.rv-about-stats {
  padding: 18px 0 34px;
}

.rv-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rv-about-stat,
.rv-about-card,
.rv-about-value,
.rv-about-editor,
.rv-about-cta__inner {
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 10px 26px rgba(32, 41, 70, 0.06);
}

.rv-about-stat {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 22px;
}

.rv-about-stat strong {
  color: var(--rv-red);
  font-size: 34px;
  line-height: 1;
}

.rv-about-stat span {
  color: var(--rv-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.rv-about-section {
  padding: 54px 0;
}

.rv-about-section--soft {
  background: rgba(255, 255, 255, 0.58);
}

.rv-about-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rv-about-card {
  padding: 28px;
}

.rv-about-card h2,
.rv-about-heading h2,
.rv-about-editor h2,
.rv-about-cta h2 {
  margin: 0 0 14px;
  color: var(--rv-blue);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.rv-about-card p,
.rv-about-value p,
.rv-about-editor p,
.rv-about-cta p {
  margin: 0;
  color: var(--rv-muted);
  font-weight: 700;
  line-height: 1.65;
}

.rv-about-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.rv-about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rv-about-value {
  padding: 24px;
}

.rv-about-value strong {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--rv-red);
  border-radius: 999px;
}

.rv-about-value h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.rv-about-process {
  display: grid;
  gap: 26px;
}

.rv-about-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: rv-about-step;
  list-style: none;
}

.rv-about-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
}

.rv-about-steps li::before {
  counter-increment: rv-about-step;
  content: counter(rv-about-step);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--rv-blue);
  border-radius: 999px;
  font-weight: 800;
}

.rv-about-steps strong {
  font-size: 18px;
}

.rv-about-steps span {
  color: var(--rv-muted);
  font-weight: 700;
}

.rv-about-editor {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
}

.rv-about-editor__mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #253154, #0b1634);
  border-radius: 999px;
  font-size: 26px;
  font-weight: 800;
}

.rv-about-editor ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--rv-muted);
  font-weight: 800;
}

.rv-about-cta {
  padding: 42px 0 76px;
}

.rv-about-cta__inner {
  display: grid;
  justify-items: center;
  padding: 38px;
  text-align: center;
}

.rv-about-cta p {
  max-width: 680px;
  margin-bottom: 24px;
}

@keyframes rv-about-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rv-about-badge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 1100px) {
  .rv-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .rv-menu-toggle {
    display: block;
    justify-self: end;
  }

  .rv-main-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.25s ease, transform 0.3s ease, visibility 0s linear 0.4s;
  }

  .rv-main-nav.is-open {
    max-height: 560px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: max-height 0.45s ease, opacity 0.28s ease, transform 0.32s ease, visibility 0s linear 0s;
  }

  .rv-menu {
    display: grid;
    gap: 0;
    padding: 12px 0 20px;
  }

  .rv-menu > li {
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity 0.22s ease, transform 0.25s ease;
  }

  .rv-main-nav.is-open .rv-menu > li {
    opacity: 1;
    transform: translateY(0);
  }

  .rv-main-nav.is-open .rv-menu > li:nth-child(2) {
    transition-delay: 0.04s;
  }

  .rv-main-nav.is-open .rv-menu > li:nth-child(3) {
    transition-delay: 0.08s;
  }

  .rv-main-nav.is-open .rv-menu > li:nth-child(4) {
    transition-delay: 0.12s;
  }

  .rv-main-nav.is-open .rv-menu > li:nth-child(5) {
    transition-delay: 0.16s;
  }

  .rv-main-nav.is-open .rv-menu > li:nth-child(n + 6) {
    transition-delay: 0.2s;
  }

  .rv-menu a {
    display: block;
    padding: 12px 0;
  }

  .rv-menu a::after {
    display: none;
  }

  .rv-menu a:hover {
    padding-inline: 10px;
    background: #fff8fa;
    border-radius: var(--rv-radius);
  }

  .rv-header-actions {
    display: none;
  }

  .rv-mobile-account-actions {
    display: flex;
    gap: 10px;
    padding: 4px 0 20px;
  }

  .rv-mobile-account-actions .rv-login-link,
  .rv-mobile-account-actions .rv-register-link {
    flex: 1;
  }

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

  .rv-category-grid {
    gap: 24px;
  }

  .rv-single-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-about-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .rv-about-hero__visual {
    min-height: 360px;
  }

  .rv-about-phone {
    inset: 0 70px 0;
  }

  .rv-about-stats__grid,
  .rv-about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv-review-hero__grid,
  .rv-review-cluster-grid,
  .rv-review-method-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-review-hero__grid {
    gap: 32px;
  }

  .rv-review-visual {
    min-height: 390px;
  }

  .rv-review-phone {
    inset: 0 96px 0;
  }

  .rv-review-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv-review-warning__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-review-warning__inner .rv-button {
    justify-self: start;
  }

  .rv-offer-archive-hero__grid,
  .rv-offer-archive-intro__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-offer-archive-hero__grid {
    gap: 30px;
  }

  .rv-offer-archive-visual {
    min-height: 360px;
  }

  .rv-offer-archive-meter {
    inset: 0 96px 0;
  }

  .rv-offer-archive-warning__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-offer-archive-warning__inner .rv-button {
    justify-self: start;
  }

  .rv-404-hero__grid,
  .rv-404-keyword-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-404-hero__grid {
    gap: 30px;
  }

  .rv-404-visual {
    min-height: 360px;
  }

  .rv-404-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv-offer-layout,
  .rv-offer-body__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-offer-card,
  .rv-offer-sticky__inner {
    position: static;
  }

  .rv-single-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .rv-container {
    width: min(calc(100% - 24px), var(--rv-container));
  }

  .rv-header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .rv-logo__mark {
    width: 38px;
    height: 38px;
  }

  .rv-logo__text {
    font-size: 21px;
  }

  .rv-logo__text small {
    font-size: 11px;
  }

  .rv-hero {
    padding: 34px 0 22px;
    text-align: left;
  }

  .rv-hero h1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .rv-about-hero {
    padding: 36px 0 24px;
  }

  .rv-about-hero h1 {
    font-size: 38px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .rv-about-hero p {
    font-size: 18px;
  }

  .rv-about-hero__actions {
    display: grid;
  }

  .rv-about-hero__visual {
    min-height: 310px;
  }

  .rv-about-phone {
    inset: 0 46px 0;
    border-radius: 22px;
  }

  .rv-about-phone__screen {
    padding: 22px;
  }

  .rv-about-phone__screen strong {
    font-size: 26px;
  }

  .rv-about-float--one {
    left: 0;
    top: 28px;
  }

  .rv-about-float--two {
    right: 0;
    top: 126px;
  }

  .rv-about-float--three {
    left: 12px;
    bottom: 32px;
  }

  .rv-about-stats__grid,
  .rv-about-two-col,
  .rv-about-values {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-about-stat {
    min-height: 0;
  }

  .rv-about-section {
    padding: 42px 0;
  }

  .rv-about-card,
  .rv-about-value,
  .rv-about-editor,
  .rv-about-cta__inner {
    padding: 22px;
  }

  .rv-about-card h2,
  .rv-about-heading h2,
  .rv-about-editor h2,
  .rv-about-cta h2 {
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  .rv-about-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .rv-about-steps span {
    grid-column: 2;
  }

  .rv-about-editor {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-about-editor__mark {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }

  .rv-review-hero {
    padding: 42px 0 34px;
  }

  .rv-review-hero h1 {
    font-size: 40px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .rv-review-hero p {
    font-size: 17px;
  }

  .rv-review-hero__actions,
  .rv-review-hero__actions .rv-button,
  .rv-review-hero__link {
    width: 100%;
  }

  .rv-review-visual {
    min-height: 390px;
  }

  .rv-review-phone {
    inset: 0 42px 0;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .rv-review-score {
    padding: 22px 16px;
  }

  .rv-review-score strong {
    font-size: 46px;
  }

  .rv-review-float--one {
    left: 0;
    top: 42px;
  }

  .rv-review-float--two {
    right: 0;
    top: 154px;
  }

  .rv-review-float--three {
    left: 8px;
    bottom: 30px;
  }

  .rv-review-section {
    padding: 46px 0;
  }

  .rv-review-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .rv-review-heading h2,
  .rv-review-cluster-copy h2,
  .rv-review-method-card h2,
  .rv-review-warning__inner h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .rv-review-app-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-review-app-card {
    min-height: 0;
    padding: 22px;
  }

  .rv-review-cluster-grid,
  .rv-review-method-grid {
    gap: 22px;
  }

  .rv-review-method-card,
  .rv-review-checklist,
  .rv-review-warning__inner {
    padding: 22px;
  }

  .rv-review-checklist div {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 12px;
  }

  .rv-review-checklist span {
    width: 34px;
    height: 34px;
  }

  .rv-review-warning {
    padding-bottom: 54px;
  }

  .rv-offer-archive-hero {
    padding: 42px 0 34px;
  }

  .rv-offer-archive-hero h1 {
    font-size: 39px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .rv-offer-archive-hero p {
    font-size: 17px;
  }

  .rv-offer-archive-hero__actions,
  .rv-offer-archive-hero__actions .rv-button,
  .rv-offer-archive-hero__link {
    width: 100%;
  }

  .rv-offer-archive-visual {
    min-height: 350px;
  }

  .rv-offer-archive-meter {
    inset: 0 42px 0;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .rv-offer-archive-meter > span {
    font-size: 54px;
  }

  .rv-offer-archive-chip--one {
    left: 0;
    top: 48px;
  }

  .rv-offer-archive-chip--two {
    right: 0;
    top: 152px;
  }

  .rv-offer-archive-chip--three {
    left: 8px;
    bottom: 38px;
  }

  .rv-offer-archive-section {
    padding: 46px 0;
  }

  .rv-offer-archive-panel,
  .rv-offer-archive-criteria,
  .rv-offer-archive-warning__inner {
    padding: 22px;
  }

  .rv-offer-archive-panel h2,
  .rv-offer-archive-heading h2,
  .rv-offer-archive-warning__inner h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .rv-offer-archive-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .rv-offer-archive-quicklinks {
    justify-content: flex-start;
  }

  .rv-offer-archive-criteria div {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 12px;
  }

  .rv-offer-archive-criteria span {
    width: 34px;
    height: 34px;
  }

  .rv-offer-archive-warning {
    padding-bottom: 54px;
  }

  .rv-404-hero {
    padding: 42px 0 34px;
  }

  .rv-404-hero h1 {
    font-size: 39px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .rv-404-hero p {
    font-size: 17px;
  }

  .rv-404-search {
    padding: 8px;
  }

  .rv-404-search .rv-search-form {
    display: grid;
  }

  .rv-404-actions,
  .rv-404-actions .rv-button,
  .rv-404-link {
    width: 100%;
  }

  .rv-404-visual {
    min-height: 330px;
  }

  .rv-404-code {
    inset: 0 44px 72px;
    border-radius: 24px;
  }

  .rv-404-code span,
  .rv-404-code strong {
    font-size: 58px;
  }

  .rv-404-code strong {
    width: 58px;
    height: 58px;
  }

  .rv-404-card {
    right: 8px;
    width: 220px;
  }

  .rv-404-float--one {
    left: 0;
    top: 46px;
  }

  .rv-404-float--two {
    right: 0;
    top: 132px;
  }

  .rv-404-float--three {
    left: 10px;
    bottom: 82px;
  }

  .rv-404-section {
    padding: 46px 0;
  }

  .rv-404-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .rv-404-heading h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .rv-404-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-404-suggestion {
    min-height: 0;
    padding: 22px;
  }

  .rv-hero p {
    margin-bottom: 26px;
    font-size: 21px;
    line-height: 1.45;
  }

  .rv-hero__label {
    font-size: 22px;
  }

  .rv-category-section {
    padding: 0 0 18px;
  }

  .rv-category-grid,
  .rv-loan-grid,
  .rv-app-grid,
  .rv-post-grid,
  .rv-footer-grid,
  .rv-single-sidebar {
    grid-template-columns: 1fr;
  }

  .rv-offer-hero {
    padding: 24px 0 30px;
  }

  .rv-offer-layout {
    gap: 24px;
  }

  .rv-offer-card {
    order: 2;
  }

  .rv-offer-detail {
    order: 1;
    padding-top: 0;
  }

  .rv-offer-detail h1 {
    font-size: 34px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .rv-offer-lead {
    font-size: 18px;
  }

  .rv-offer-body {
    padding-bottom: 48px;
  }

  .rv-offer-info-block h2 {
    padding: 17px 18px;
    font-size: 20px;
  }

  .rv-offer-info-panel__header {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
  }

  .rv-offer-info-panel__header h2 {
    font-size: 22px;
  }

  .rv-offer-info-panel__header p {
    max-width: none;
  }

  .rv-offer-collapse summary {
    min-height: 62px;
    padding: 17px 18px;
    font-size: 20px;
  }

  .rv-offer-mini-collapse summary {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 18px;
  }

  .rv-offer-table,
  .rv-offer-table tbody,
  .rv-offer-table tr,
  .rv-offer-table th,
  .rv-offer-table td {
    display: block;
    width: 100%;
  }

  .rv-offer-table th {
    padding: 15px 18px 6px;
    border-bottom: 0;
    background: #fff;
  }

  .rv-offer-table td {
    padding: 0 18px 15px;
  }

  .rv-offer-highlight-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px;
  }

  .rv-offer-info-block .rv-content {
    padding: 18px;
  }

  .rv-offer-review-tools {
    padding: 0 18px 18px;
  }

  .rv-offer-share {
    align-items: flex-start;
  }

  .rv-offer-share__links {
    width: 100%;
  }

  .rv-offer-editor-profile {
    grid-template-columns: 1fr;
  }

  .rv-category-grid {
    gap: 18px;
  }

  .rv-category-card {
    grid-template-columns: 110px 1fr;
    min-height: 98px;
    justify-items: start;
    padding: 12px 28px;
  }

  .rv-category-card span:last-child {
    font-size: 27px;
    line-height: 1.15;
  }

  .rv-category-card__icon,
  .rv-icon-hand::before,
  .rv-icon-bank::before,
  .rv-icon-card::before {
    width: 64px;
    height: 64px;
  }

  .rv-section {
    padding: 52px 0;
  }

  .rv-section-title {
    margin-bottom: 28px;
    font-size: 26px;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .rv-section-kicker {
    margin-inline: 0;
  }

  .rv-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv-app-card {
    min-height: 120px;
  }

  .rv-keyword-clusters {
    justify-content: flex-start;
  }

  .rv-author-box {
    grid-template-columns: 1fr;
  }

  .rv-loan-card {
    min-height: 0;
    padding-inline: 18px;
  }

  .rv-loan-card__stats div {
    padding: 0 4px;
  }

  .rv-loan-card__stats strong {
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  .rv-loan-card__rating {
    flex-wrap: wrap;
    white-space: normal;
  }

  .rv-loan-card__details div {
    grid-template-columns: 96px 1fr;
  }

  .rv-single {
    padding-top: 28px;
  }

  .rv-article-header h1,
  .rv-page-content h1,
  .rv-archive-header h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .rv-article-meta {
    display: grid;
  }

  .rv-toc {
    padding: 18px;
    overflow-wrap: anywhere;
  }

  .rv-content {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .rv-content h2 {
    font-size: 27px;
  }

  .rv-content h3 {
    font-size: 22px;
  }

  .rv-search-form {
    display: grid;
  }

  .rv-footer-grid {
    gap: 24px;
  }
}

@media (max-width: 380px) {
  .rv-logo__text {
    font-size: 18px;
  }

  .rv-hero h1 {
    font-size: 32px;
  }

  .rv-hero p {
    font-size: 19px;
  }

  .rv-loan-card__stats strong {
    font-size: 23px;
  }

  .rv-category-card {
    grid-template-columns: 82px 1fr;
    padding-inline: 18px;
  }

  .rv-category-card span:last-child {
    font-size: 24px;
  }
}

/* Enhanced single post detail */
.rv-single {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 6%, rgba(245, 29, 59, 0.08), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(18, 183, 200, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7faff 42%, #fff 100%);
}

.rv-single-grid {
  align-items: start;
  max-width: 100%;
}

.rv-article {
  display: grid;
  gap: 24px;
  max-width: 100%;
  min-width: 0;
}

.rv-article-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(245, 29, 59, 0.12), rgba(18, 183, 200, 0.12));
  border: 1px solid rgba(237, 240, 245, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(32, 41, 70, 0.11);
  max-width: 100%;
  min-width: 0;
}

.rv-article-hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  background: conic-gradient(from 120deg, rgba(245, 29, 59, 0.22), rgba(18, 183, 200, 0.2), rgba(255, 183, 3, 0.18), rgba(245, 29, 59, 0.22));
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
  animation: rvArticleSpin 16s linear infinite;
}

.rv-article-hero__content,
.rv-article-hero__media {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.rv-article-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: var(--rv-red);
  background: #fff4f6;
  border: 1px solid rgba(245, 29, 59, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.rv-article-header h1 {
  color: var(--rv-ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.rv-article-excerpt {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--rv-muted);
  font-size: 18px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.rv-article-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
  text-transform: none;
}

.rv-article-meta span,
.rv-article-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(32, 41, 70, 0.06);
}

.rv-article-meta img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
}

.rv-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  max-width: 100%;
  min-width: 0;
}

.rv-article-hero__media {
  display: grid;
  align-content: center;
  gap: 14px;
}

.rv-article-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 340px;
  background:
    linear-gradient(135deg, rgba(32, 41, 70, 0.9), rgba(18, 183, 200, 0.72)),
    var(--rv-blue);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(32, 41, 70, 0.2);
  transform: rotate(1.2deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rv-article-hero:hover .rv-article-visual {
  box-shadow: 0 28px 60px rgba(32, 41, 70, 0.24);
  transform: rotate(0deg) translateY(-3px);
}

.rv-article-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.rv-article-visual__fallback {
  display: grid;
  height: 100%;
  min-height: 340px;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: #fff;
}

.rv-article-visual__fallback span {
  width: fit-content;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rv-article-visual__fallback strong {
  max-width: 260px;
  font-size: 32px;
  line-height: 1.12;
}

.rv-article-trust {
  justify-self: end;
  display: inline-grid;
  gap: 3px;
  min-width: 150px;
  margin-top: -58px;
  margin-right: 18px;
  padding: 16px 18px;
  color: var(--rv-blue);
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(32, 41, 70, 0.14);
  z-index: 2;
}

.rv-article-trust span {
  color: var(--rv-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rv-article-trust strong {
  font-size: 20px;
}

.rv-article-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rv-article-summary div,
.rv-article-note,
.rv-article-share,
.rv-article-checklist {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(32, 41, 70, 0.07);
}

.rv-article-summary div {
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rv-article-summary div:hover {
  border-color: rgba(18, 183, 200, 0.32);
  transform: translateY(-3px);
}

.rv-article-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--rv-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rv-article-summary strong {
  display: block;
  color: var(--rv-blue);
  font-size: 15px;
  line-height: 1.45;
}

.rv-article-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: start;
  max-width: 100%;
  min-width: 0;
}

.rv-article-main {
  min-width: 0;
}

.rv-article-note {
  margin-bottom: 20px;
  padding: 20px 22px;
  border-left: 4px solid var(--rv-gold);
}

.rv-article-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--rv-blue);
  font-size: 18px;
}

.rv-article-note p {
  margin: 0;
  color: var(--rv-muted);
  line-height: 1.7;
}

.rv-article-toc .rv-toc {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 183, 200, 0.09), rgba(245, 29, 59, 0.06)),
    #fff;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(32, 41, 70, 0.07);
}

.rv-article-toc .rv-toc::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rv-red), var(--rv-cyan));
}

.rv-content {
  padding: 4px 2px;
  color: #25304f;
  font-size: 18px;
  line-height: 1.78;
}

.rv-content h2 {
  position: relative;
  margin-top: 42px;
  padding-top: 8px;
  color: var(--rv-ink);
}

.rv-content h2::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
  border-radius: 999px;
}

.rv-content h3 {
  color: var(--rv-blue);
}

.rv-content p,
.rv-content li {
  color: #25304f;
}

.rv-content ul,
.rv-content ol {
  padding-left: 24px;
}

.rv-content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  color: var(--rv-blue);
  background: #fff;
  border-left: 4px solid var(--rv-cyan);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 41, 70, 0.06);
}

.rv-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.rv-content th,
.rv-content td {
  padding: 12px 14px;
  border: 1px solid var(--rv-border);
}

.rv-content th {
  color: var(--rv-blue);
  background: #f7faff;
}

.rv-article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.rv-article-share,
.rv-article-checklist {
  padding: 18px;
}

.rv-article-share h2,
.rv-article-checklist h2 {
  margin: 0 0 14px;
  color: var(--rv-blue);
  font-size: 18px;
}

.rv-article-share__links {
  display: grid;
  gap: 10px;
}

.rv-share-link {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 10px;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.rv-share-link:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.rv-share-link span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 12px;
}

.rv-share-link--facebook {
  background: #1877f2;
}

.rv-share-link--x {
  background: #111;
}

.rv-share-link--threads {
  background: #5b2cff;
}

.rv-share-link--linkedin {
  background: #0a66c2;
}

.rv-article-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rv-article-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--rv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.rv-article-checklist li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--rv-green), var(--rv-cyan));
  border-radius: 50%;
}

.rv-author-box {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96)),
    #fff;
  box-shadow: 0 16px 38px rgba(32, 41, 70, 0.08);
}

.rv-rating-box {
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--rv-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(32, 41, 70, 0.07);
}

@keyframes rvArticleSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .rv-single-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-article-body-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .rv-article-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-article-visual,
  .rv-article-visual img,
  .rv-article-visual__fallback {
    min-height: 280px;
  }

  .rv-article-summary {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .rv-single .rv-container {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .rv-single .rv-container *,
  .rv-single .rv-container *::before,
  .rv-single .rv-container *::after {
    max-width: 100%;
  }

  .rv-single {
    padding-top: 18px;
  }

  .rv-article-hero {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 18px;
    gap: 22px;
  }

  .rv-article-header h1 {
    max-width: calc(100vw - 72px);
    font-size: 28px;
    line-height: 1.16;
    word-break: break-word;
  }

  .rv-article-excerpt {
    max-width: calc(100vw - 72px);
    font-size: 16px;
    word-break: break-word;
  }

  .rv-article-hero__content,
  .rv-article-hero__media {
    width: 100%;
  }

  .rv-article-actions {
    display: grid;
    max-width: calc(100vw - 72px);
  }

  .rv-article-meta {
    gap: 9px;
  }

  .rv-article-actions .rv-button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .rv-article-visual {
    transform: none;
  }

  .rv-article-trust {
    justify-self: start;
    margin: -44px 0 0 14px;
  }

  .rv-article-aside {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-content {
    max-width: calc(100vw - 48px);
    font-size: 16px;
  }

  .rv-content h2 {
    font-size: 26px;
  }

  .rv-content h3 {
    font-size: 22px;
  }

  .rv-author-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-single-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-article-hero::before,
  .rv-article-visual,
  .rv-article-summary div,
  .rv-share-link {
    animation: none;
    transition: none;
  }
}

/* ==========================================================================
   REVIEWVAY SINGLE POST LAYOUT UPGRADES (CENTRALIZED, LIVELY & ANIMATED)
   ========================================================================== */

/* Reading progress container fixed to viewport top */
.rv-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(32, 41, 70, 0.06);
  z-index: 99999;
}

.rv-reading-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rv-red), var(--rv-cyan));
  transition: width 0.1s ease-out;
}

/* Layout centering (sidebar removed) */
.rv-single-layout {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 20px;
}

.rv-single-layout .rv-article {
  max-width: 100% !important;
  display: block !important;
}

.rv-article-body-wrapper {
  max-width: 100% !important;
}

.rv-article-main {
  width: 100% !important;
  max-width: 100% !important;
}

/* Micro-animations and hover transitions */
.rv-article-hero {
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(32, 41, 70, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: rvHeroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rvHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Metadata formatting */
.rv-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--rv-muted);
}

.rv-article-meta span, 
.rv-article-meta time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.rv-article-meta img {
  border-radius: 50%;
  border: 1px solid var(--rv-border);
  transition: transform 0.3s ease;
}

.rv-article-meta span:hover img {
  transform: scale(1.15) rotate(5deg);
}

/* Accordion Table of Contents Box */
.rv-article-toc .rv-toc {
  background: linear-gradient(135deg, rgba(18, 183, 200, 0.05), rgba(255, 255, 255, 1)) !important;
  border: 1px solid rgba(18, 183, 200, 0.2) !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  box-shadow: 0 10px 30px rgba(32, 41, 70, 0.04) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rv-article-toc .rv-toc:hover {
  border-color: rgba(18, 183, 200, 0.4) !important;
  box-shadow: 0 15px 35px rgba(32, 41, 70, 0.08) !important;
}

.rv-toc h2 {
  font-size: 18px !important;
  margin: 0 !important;
  font-weight: 800 !important;
  color: var(--rv-blue) !important;
}

.rv-toc h2::before {
  display: none !important; /* Remove any old content prefix if exists */
}

.rv-toc ol {
  margin: 16px 0 0 0 !important;
  padding-left: 20px !important;
  list-style-type: decimal !important;
}

.rv-toc ol.is-collapsed {
  display: none !important;
}

.rv-toc li {
  margin-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.rv-toc li a {
  color: var(--rv-blue) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.rv-toc li a:hover {
  color: var(--rv-red) !important;
  padding-left: 6px;
}

/* Checklist Callout Box */
.rv-article-checklist {
  margin: 28px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(23, 166, 115, 0.04), rgba(18, 183, 200, 0.03));
  border: 1px dashed rgba(23, 166, 115, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(23, 166, 115, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.rv-article-checklist:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 166, 115, 0.45);
}

.rv-article-checklist h2 {
  margin: 0 0 16px 0 !important;
  color: var(--rv-green) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.rv-article-checklist h2::before {
  content: "✓" !important;
  display: inline-grid !important;
  width: 22px !important;
  height: 22px !important;
  place-items: center !important;
  background: var(--rv-green) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.rv-article-checklist ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.rv-article-checklist li {
  margin-bottom: 12px !important;
  padding-left: 28px !important;
  position: relative !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: var(--rv-ink) !important;
}

.rv-article-checklist li::before {
  content: "" !important;
  position: absolute !important;
  left: 6px !important;
  top: 7px !important;
  width: 10px !important;
  height: 6px !important;
  border-left: 2px solid var(--rv-green) !important;
  border-bottom: 2px solid var(--rv-green) !important;
  transform: rotate(-45deg) !important;
}

.rv-article-checklist li:last-child {
  margin-bottom: 0 !important;
}

/* Note Alert box */
.rv-article-note {
  margin: 28px 0 !important;
  padding: 20px 24px !important;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.05), rgba(255, 255, 255, 1)) !important;
  border: 1px solid rgba(255, 183, 3, 0.2) !important;
  border-left: 5px solid var(--rv-gold) !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.03) !important;
  transition: transform 0.3s ease;
}

.rv-article-note:hover {
  transform: translateX(4px);
}

.rv-article-note strong {
  color: #e69500 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
}

.rv-article-note strong::before {
  content: "⚠️" !important;
  font-size: 16px !important;
}

.rv-article-note p {
  font-size: 15px !important;
  color: var(--rv-muted) !important;
}

/* Post content rich elements styling */
.rv-content a {
  color: var(--rv-red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.rv-content a:hover {
  color: var(--rv-cyan);
}

.rv-content blockquote {
  border-left: 5px solid var(--rv-cyan) !important;
  background: #f4fbfe !important;
  padding: 24px !important;
  border-radius: 0 12px 12px 0 !important;
  font-style: italic;
  font-size: 18px;
  margin: 32px 0 !important;
}

.rv-content table {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(32, 41, 70, 0.04);
}

.rv-content th {
  background-color: #f0f7ff !important;
  font-weight: 700 !important;
  font-size: 15px;
}

.rv-content tr:hover td {
  background-color: #fafcfe;
  transition: background-color 0.15s ease;
}

/* Horizontal Share buttons row */
.rv-article-share {
  margin: 40px 0 !important;
  padding: 24px !important;
  background: #fbfcfd !important;
  border: 1px solid var(--rv-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(32, 41, 70, 0.03) !important;
  display: block !important;
}

.rv-article-share h2 {
  margin: 0 0 18px 0 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: var(--rv-muted) !important;
  letter-spacing: 0.08em !important;
  text-align: center !important;
}

.rv-article-share__links {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.rv-share-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 48px !important;
  padding: 0 12px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #fff !important;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, filter 0.15s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06) !important;
}

.rv-share-link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  filter: brightness(1.08) !important;
}

.rv-share-link--facebook {
  background: #1877f2 !important;
}

.rv-share-link--x {
  background: #111111 !important;
}

.rv-share-link--threads {
  background: #000000 !important;
}

.rv-share-link--linkedin {
  background: #0077b5 !important;
}

.rv-share-link span {
  display: inline-grid !important;
  width: 26px !important;
  height: 26px !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

/* Author box upgrade */
.rv-author-box {
  margin: 40px 0 !important;
  padding: 28px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(32, 41, 70, 0.02) 0%, rgba(255, 255, 255, 1) 100%) !important;
  border: 1px solid var(--rv-border) !important;
  box-shadow: 0 10px 30px rgba(32, 41, 70, 0.03) !important;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.rv-author-box:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 183, 200, 0.25);
}

.rv-author-box__avatar img {
  border-radius: 50% !important;
  border: 3px solid #fff !important;
  box-shadow: 0 6px 18px rgba(32, 41, 70, 0.1) !important;
}

/* Star rating box card */
.rv-rating-box {
  margin-top: 32px !important;
  padding: 24px !important;
  background: #fff !important;
  border: 1px solid var(--rv-border) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(32, 41, 70, 0.03) !important;
}

/* Hero media shadow pulse */
.rv-article-visual {
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(32, 41, 70, 0.12) !important;
}

/* Mobile responsive optimizations */
@media (max-width: 767px) {
  .rv-single-layout {
    padding: 0 12px !important;
  }

  .rv-article-hero {
    padding: 20px 16px !important;
    border-radius: 12px !important;
  }

  .rv-article-header h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  .rv-article-excerpt {
    font-size: 15px !important;
  }

  .rv-article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px !important;
  }

  .rv-article-checklist {
    padding: 16px !important;
  }

  .rv-article-checklist h2 {
    font-size: 16px !important;
  }

  .rv-article-checklist li {
    font-size: 14px !important;
    padding-left: 24px !important;
  }

  .rv-article-share__links {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .rv-share-link {
    height: 44px !important;
    font-size: 13px !important;
  }

  .rv-content blockquote {
    padding: 18px !important;
    font-size: 16px;
    margin: 24px 0 !important;
  }

  .rv-author-box {
    padding: 20px 16px !important;
  }
}

@media (max-width: 1100px) {
  .rv-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rv-site-footer {
    margin-top: 40px;
  }

  .rv-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 40px 0 30px;
  }

  .rv-footer-column h2 {
    margin-bottom: 16px;
  }

  .rv-footer-socials {
    gap: 10px;
  }

  .rv-footer-social {
    width: 42px;
    height: 42px;
  }

  .rv-footer-disclaimer {
    padding: 22px 0;
  }

  .rv-footer-bottom__inner {
    display: grid;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-menu-toggle,
  .rv-menu-toggle span:not(.screen-reader-text),
  .rv-main-nav,
  .rv-menu > li {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}
