:root {
  --blue: #2a7de1;
  --blue-dark: #1a5cb5;
  --ink: #121212;
  --muted: #4a5568;
  --dim: #6b7280;
  --bg: #eef1f5;
  --surface: #ffffff;
  --border: #d7dee8;
  --shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
  --font-display: "Sora", "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 58% 32% at 100% 0%, rgba(42, 125, 225, 0.08), transparent 58%),
    #eef1f5;
  line-height: 1.65;
}
a { color: var(--blue); }
img { max-width: 100%; height: auto; }
header.rp-header,
.rp-header {
  display: block !important;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}
.rp-header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 16px;
}
.rp-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.rp-brand img {
  display: block;
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
  aspect-ratio: 1278 / 306;
  object-fit: contain;
  border-radius: 0;
}
.rp-brand span { display: none; }
.rp-nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.rp-nav-desktop a,
.rp-nav-link,
.rp-nav-drop-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  padding: 5px 8px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.rp-nav-desktop a:hover,
.rp-nav-link:hover,
.rp-nav-drop-btn:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}
.rp-nav-drop { position: relative; }
.rp-nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  z-index: 40;
}
.rp-nav-drop:hover .rp-nav-drop-menu,
.rp-nav-drop:focus-within .rp-nav-drop-menu { display: grid; }
.rp-nav-drop-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}
.rp-nav-drop-menu a:hover { background: #f6f8fb; }
.rp-header-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.rp-nav-help {
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.rp-nav-help:hover { background: var(--blue); color: #fff !important; }
.rp-nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.rp-nav-cta:hover { background: var(--blue-dark); color: #fff !important; }
.rp-nav-phone {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.rp-nav-phone:hover { border-color: var(--blue); color: var(--blue); }
.rp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: 0;
  background: none;
  cursor: pointer;
}
.rp-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}
.rp-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.rp-hamburger.active span:nth-child(2) { opacity: 0; }
.rp-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.rp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 190;
  padding: 76px 24px 120px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow-y: auto;
}
.rp-mobile-nav.is-open { display: flex; }
.rp-mobile-nav a {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  text-decoration: none;
}
.rp-mobile-nav a.rp-nav-cta { color: #fff !important; width: auto; }
.rp-mobile-nav a.rp-nav-help { width: auto; }
.rp-main, .rp-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px;
}
.rp-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}
.rp-cta:hover { background: var(--blue-dark); }
.rp-cta-secondary {
  background: transparent;
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
}
.rp-crumbs { color: var(--dim); font-size: 14px; margin: 8px 0 22px; }
.rp-crumbs a { text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 12px; }
h2 { font-size: 1.45rem; margin: 0 0 12px; }
h3 { font-size: 1.08rem; margin: 18px 0 8px; }
.rp-lead { font-size: 1.05rem; color: var(--muted); max-width: 46rem; }
.rp-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.rp-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.rp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.rp-chip {
  background: #f6f8fb;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
}
.rp-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.rp-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}
.rp-stat span { display: block; font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: .04em; }
.rp-stat strong { display: block; margin-top: 4px; font-size: 1.02rem; }
.rp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 22px 0;
  box-shadow: var(--shadow);
}
.rp-steps { counter-reset: step; padding: 0; margin: 0; list-style: none; }
.rp-steps li { position: relative; padding: 12px 0 12px 48px; border-bottom: 1px solid var(--border); }
.rp-steps li:last-child { border-bottom: 0; }
.rp-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e8f1fc;
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.rp-related, .rp-links { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 12px 0 0; list-style: none; }
.rp-related a, .rp-links a {
  display: inline-block;
  background: #f6f8fb;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.rp-faq h3 { margin-top: 22px; }
.rp-footer { color: var(--dim); font-size: 14px; border-top: 1px solid var(--border); }
.rp-note { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 1100px) {
  .rp-nav-desktop { display: none; }
  .rp-hamburger { display: flex; }
}
@media (max-width: 700px) {
  .rp-header-right .rp-nav-help,
  .rp-header-right .rp-nav-cta { display: none; }
}
@media (max-width: 520px) {
  .rp-nav-phone { font-size: 0; padding: 5px 8px; }
  .rp-nav-phone::before { content: "Call"; font-size: 0.72rem; }
}
