:root {
  --rg-bg: #07111d;
  --rg-bg2: #0b1725;
  --rg-panel: #111f31;
  --rg-panel2: #17283c;
  --rg-line: #26384c;
  --rg-text: #edf4fb;
  --rg-muted: #aebccd;
  --rg-red: #d2572a;
  --rg-red2: #ba4d26;
  --rg-cyan: #46d9ff;
  --rg-white: #fff;
  --rg-paper: #f7f9fc;
  --rg-ink: #172033;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.redgate-prime {
  margin: 0;
  background:
    radial-gradient(circle at 78% 6%, rgba(70,217,255,.14), transparent 26%),
    radial-gradient(circle at 13% 12%, rgba(210,87,42,.16), transparent 25%),
    linear-gradient(180deg, #07111d 0%, #091421 55%, #07111d 100%);
  color: var(--rg-text);
  font-family: Inter, Arial, "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}
body.redgate-prime a { color: inherit; text-decoration: none; }
body.redgate-prime img { max-width: 100%; height: auto; }
.rg-wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.rg-site-shell { min-height: 100vh; overflow-x: hidden; }
.rg-header {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, rgba(7,17,29,.96), rgba(7,17,29,.72));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.rg-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.rg-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.rg-brand-logo { display: block; height: auto; object-fit: contain; }
.rg-brand-logo-wide { width: 150px; max-height: 42px; }
.rg-brand-logo-square { display: none; width: 38px; height: 38px; }
.rg-footer-brand .rg-brand-logo-wide { width: 156px; }
.rg-mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: #fff;
  cursor: pointer;
}
.rg-mobile-menu-toggle i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .16s ease, opacity .16s ease;
}
.rg-mobile-menu-toggle[aria-expanded="true"] i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rg-mobile-menu-toggle[aria-expanded="true"] i:nth-child(2) {
  opacity: 0;
}
.rg-mobile-menu-toggle[aria-expanded="true"] i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.rg-mobile-menu {
  display: none;
}
.rg-top-nav { display: flex; align-items: center; gap: 17px; color: #ccd8e5; font-size: 14px; }
.rg-top-nav a { white-space: nowrap; }
.rg-top-nav a:hover { color: #fff; }
.rg-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.rg-nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  list-style-type: none;
  color: #ccd8e5;
  padding: 0;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.rg-nav-dropdown summary::-webkit-details-marker { display: none !important; }
.rg-nav-dropdown summary::marker {
  content: "";
  display: none;
  font-size: 0;
}
.rg-nav-dropdown summary:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.rg-nav-dropdown:hover .rg-nav-dropdown-trigger,
.rg-nav-dropdown:focus-within summary,
.rg-nav-dropdown[open] summary {
  color: #fff;
}
.rg-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  min-width: 160px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(11,22,34,.98);
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
.rg-nav-dropdown-menu:before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}
.rg-nav-dropdown:hover .rg-nav-dropdown-menu,
.rg-nav-dropdown:focus-within .rg-nav-dropdown-menu,
.rg-nav-dropdown[open] .rg-nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.rg-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  color: #dbe7f2;
}
.rg-nav-dropdown-menu a:hover {
  background: rgba(210,87,42,.16);
  color: #fff;
}
.rg-nav-cta,
.rg-btn-red {
  background: var(--rg-red);
  border-color: var(--rg-red);
  color: #fff !important;
}
.rg-nav-cta {
  padding: 10px 15px;
  border-radius: 7px;
  font-weight: 800;
}
.rg-nav-cta:hover,
.rg-btn-red:hover,
.mini:hover { background: var(--rg-red2); }

.rg-adbar {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.rg-adbar img[src=""],
.rg-adbar img:not([src]) { display: none; }
.rg-adbar img { display: block; max-height: 120px; object-fit: contain; }

.rs-page-nav {
  background: #2b363f !important;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid #1a2229 !important;
}
.rs-page-nav .rs-nav-apps a,
.rs-page-nav .rs-nav-docs a,
.rs-page-nav .rs-nav-dropdown summary {
  color: #d8e4ee !important;
}
.rs-page-nav .rs-nav-apps a:hover,
.rs-page-nav .rs-nav-docs a:hover,
.rs-page-nav .rs-nav-dropdown[open] summary {
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
}
.rs-page-nav .rs-nav-dropdown.active summary {
  color: var(--rg-red) !important;
  border-bottom-color: var(--rg-red) !important;
}
.rs-page-nav .rs-nav-dropdown-menu {
  background: #26343f !important;
}
.rs-page-nav .rs-nav-docs {
  background: rgba(255,255,255,.055) !important;
}
.rs-page-nav i,
.rs-page-nav span {
  color: inherit;
}
.rs-page-nav a.active,
.rs-nav-apps a.active { color: var(--rg-red) !important; border-bottom-color: var(--rg-red) !important; }

.rg-main { min-height: 620px; }
.rg-home-hero {
  position: relative;
  padding: 72px 0 54px;
  overflow: hidden;
}
.rg-home-hero:before {
  content: "";
  position: absolute;
  inset: -120px -10% auto;
  height: 520px;
  background:
    repeating-conic-gradient(from 220deg at 78% 40%, rgba(70,217,255,.11) 0deg, rgba(70,217,255,.11) 3deg, transparent 5deg, transparent 18deg),
    radial-gradient(circle at 76% 42%, rgba(70,217,255,.18), transparent 32%);
  opacity: .75;
  pointer-events: none;
}
.rg-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 46px;
  align-items: center;
}
.rg-hero-logo-card {
  width: min(270px, 100%);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.rg-hero-logo-card img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
}
.rg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd7c6;
  background: rgba(210,87,42,.12);
  border: 1px solid rgba(210,87,42,.35);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
}
.rg-home-copy h1,
.rg-page-hero h1 {
  margin: 20px 0 18px;
  color: var(--rg-text);
  font-size: 56px;
  line-height: 1.03;
  font-weight: 850;
}
.rg-lead,
.rg-page-hero p {
  color: #bdc9d8;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 720px;
}
.rg-rating-line { display: flex; align-items: center; gap: 10px; color: #cdd8e5; margin-bottom: 22px; }
.rg-stars { color: #ffc65c; letter-spacing: 2px; }
.rg-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rg-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border .18s ease;
}
.rg-btn:hover { transform: translateY(-1px); }
.rg-btn small { margin-left: 2px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; }
.rg-btn-light { background: #fff; color: #162033 !important; border-color: #fff; }
.rg-btn-light small { color: #687386; }
.rg-btn-ghost { background: rgba(255,255,255,.07); color: #eef5fb; }

.rg-device-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(19,34,54,.94), rgba(8,18,31,.96));
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  overflow: hidden;
}
.rg-device-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.rg-rays {
  position: absolute;
  inset: -35% -20% auto auto;
  width: 520px;
  height: 520px;
  background: repeating-conic-gradient(from 0deg, rgba(70,217,255,.16) 0deg, rgba(70,217,255,.16) 2deg, transparent 3deg, transparent 16deg);
  border-radius: 50%;
  opacity: .7;
}
.rg-network-orbit {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 280px;
  height: 280px;
  border: 44px solid rgba(70,217,255,.10);
  border-radius: 50%;
}
.rg-phone {
  position: absolute;
  right: 54px;
  top: 50px;
  width: 220px;
  min-height: 326px;
  border-radius: 28px;
  border: 8px solid #1c3047;
  background: #0c1420;
  box-shadow: 0 20px 44px rgba(0,0,0,.45);
  padding: 18px;
}
.rg-phone h3 { margin: 0 0 16px; font-size: 16px; display: flex; align-items: center; gap: 9px; }
.rg-phone h3 img { width: 30px; height: 30px; border-radius: 7px; }
.rg-node { display: flex; align-items: center; justify-content: space-between; background: #14233a; border: 1px solid #2b4665; border-radius: 10px; padding: 10px 12px; margin-bottom: 9px; color: #dbe8f4; font-size: 13px; }
.rg-metrics { position: absolute; left: 52px; bottom: 54px; width: 230px; display: grid; gap: 14px; }
.rg-metrics div { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 4px 12px; align-items: center; }
.rg-metrics i { grid-row: 1 / span 2; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(210,87,42,.17); color: #ffb18b; font-style: normal; font-weight: 900; }
.rg-metrics b { grid-column: 2; color: #fff; }
.rg-metrics span { grid-column: 2; color: #aebccd; font-size: 13px; line-height: 1.35; }

.rg-shortcuts-section,
.rg-feature-band,
.rg-rating-preview,
.rg-content-band {
  padding: 58px 0;
}
.rg-shortcuts-section { background: rgba(255,255,255,.025); }
.rg-section-heading { margin-bottom: 24px; }
.rg-section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.rg-section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 7px;
  border: 1px solid rgba(210,87,42,.5);
  color: #ffd7c6 !important;
  font-weight: 800;
  white-space: nowrap;
}
.rg-section-action:hover { background: rgba(210,87,42,.12); color: #fff !important; }
.rg-rating-heading-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.rg-rating-overall {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "stars score"
    "copy copy";
  align-items: center;
  gap: 3px 10px;
  min-width: 230px;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid rgba(255,198,92,.28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,198,92,.12), rgba(210,87,42,.08));
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
.rg-rating-overall-stars {
  grid-area: stars;
  color: #ffc65c;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.rg-rating-overall strong {
  grid-area: score;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.rg-rating-overall span:last-child {
  grid-area: copy;
  color: #aebccd;
  font-size: 12px;
  line-height: 1.35;
}
.rg-section-heading h2,
.rg-feature-grid h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.18;
  margin: 14px 0 0;
}
.rg-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 24px;
}
.rg-category-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  color: #dce8f5;
}
.rg-category-strip b {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(210,87,42,.18);
  color: #ffb18b;
  font-size: 12px;
}
.rg-shortcut-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rg-shortcut-card,
.rg-feature-cards div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.055);
  padding: 20px;
  color: #eaf2fa;
  transition: transform .18s ease, border .18s ease, background .18s ease;
}
.rg-shortcut-card:hover { transform: translateY(-2px); border-color: rgba(210,87,42,.55); background: rgba(210,87,42,.08); }
.rg-shortcut-card.hot { border-color: rgba(210,87,42,.35); }
.rg-shortcut-card i,
.rg-feature-cards i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffb18b;
  background: rgba(210,87,42,.16);
  margin-bottom: 12px;
}
.rg-shortcut-card h3,
.rg-feature-cards h3 { margin: 0 0 8px; font-size: 19px; color: #fff; }
.rg-shortcut-card p,
.rg-feature-cards p,
.rg-feature-grid > div > p { margin: 0; color: #aebccd; line-height: 1.65; }
.rg-feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.rg-feature-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.rg-home-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rg-rating-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rg-rating-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.055);
  padding: 20px;
  color: #eaf2fa;
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}
.rg-rating-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.rg-rating-user {
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rg-rating-score {
  flex: 0 0 auto;
  color: #ffc65c;
  font-size: 14px;
  white-space: nowrap;
}
.rg-rating-score b {
  color: #fff;
  margin-left: 5px;
}
.rg-rating-comment {
  flex: 1;
  margin: 0;
  color: #cbd7e4;
  line-height: 1.65;
}
.rg-rating-followups {
  display: grid;
  gap: 10px;
  margin-top: -4px;
}
.rg-rating-followup {
  padding: 10px 12px;
  border-left: 3px solid rgba(210,87,42,.72);
  border-radius: 8px;
  background: rgba(210,87,42,.09);
}
.rg-rating-followup-meta {
  margin-bottom: 5px;
  color: #ffbf93;
  font-size: 12px;
  font-weight: 800;
}
.rg-rating-followup-text {
  color: #dbe7f2;
  font-size: 13px;
  line-height: 1.55;
}
.rg-rating-facts {
  display: grid;
  gap: 8px;
  color: #aebccd;
  font-size: 13px;
}
.rg-rating-facts span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rg-rating-facts i {
  color: #ffb18b;
}
.rg-rating-reward {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(210,87,42,.18);
  color: #ffd7c6;
  font-weight: 800;
  font-size: 13px;
}
.rg-article-list {
  display: grid;
  border-top: 1px solid #dfe6ef;
}
.rg-article-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #dfe6ef;
}
.rg-article-row-date {
  color: var(--rg-red);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.rg-article-row h2 {
  margin: 0 0 8px;
  color: var(--rg-ink);
  font-size: 22px;
  line-height: 1.28;
}
.rg-article-row p {
  margin: 0;
  color: #59687a;
  line-height: 1.65;
}
.rg-article-row-link {
  color: var(--rg-red);
  font-weight: 850;
  white-space: nowrap;
}

.rg-page-hero {
  padding: 48px 0 28px;
  background:
    radial-gradient(circle at 80% 12%, rgba(70,217,255,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent);
}
.rg-page-hero h1 { font-size: 42px; }
.rg-page-desc,
.rg-page-desc p {
  color: #bdc9d8;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
  max-width: 720px;
}
.rg-content-band { background: #eef2f7; color: var(--rg-ink); }
.rg-blog-layout,
.rg-single-layout { display: grid; grid-template-columns: 2fr .86fr; gap: 28px; align-items: start; }
.rg-post-list { display: grid; gap: 16px; }
.rg-post-card,
.rg-content-card,
.rg-sidebar-card {
  background: #fff;
  color: var(--rg-ink);
  border: 1px solid #dfe6ef;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(16,24,40,.04);
}
.rg-post-card { padding: 22px; }
.rg-post-meta { color: var(--rg-red); font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.rg-post-card h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.28; color: var(--rg-ink); }
.rg-post-card p { margin: 0 0 14px; color: #59687a; line-height: 1.7; }
.rg-read-more { color: var(--rg-red); font-weight: 800; }
.rg-content-card { padding: 34px; }
.rg-article h1 { color: var(--rg-ink); font-size: 40px; line-height: 1.16; margin: 8px 0 20px; }
.rg-entry { color: #4f5e70; font-size: 17px; line-height: 1.85; }
.rg-entry h2,
.rg-entry h3 { color: var(--rg-ink); margin-top: 30px; }
.rg-entry a { color: var(--rg-red); text-decoration: underline; }
.rg-sidebar-card { padding: 20px; background: #122236; color: #edf4fb; border-color: rgba(255,255,255,.10); }
.rg-sidebar-card h3 { margin: 0 0 12px; color: #fff; }
.rg-sidebar-card a { display: block; color: #cbd7e4; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.09); }
.rg-pagination { margin-top: 22px; color: var(--rg-ink); }

.rg-footer {
  background: #07111d;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #b7c4d4;
}
.rg-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 24px;
}
.rg-footer p { max-width: 420px; line-height: 1.65; }
.rg-footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-content: flex-start; }
.rg-footer-links a { color: #d7e2ee; }
.rg-footer-bottom { text-align: center; padding: 16px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #8fa0b4; }
.screen-reader-text { position: absolute; left: -9999px; }

body.redgate-rs-ext .rg-main {
  background: #eef2f7;
  color: #172033;
}
body.redgate-rs-ext .rg-main > section:not(.dl-hero):not(.dl-free-banner):not(.dl-features):not(.dl-compat):not(.dl-guarantees):not(.dl-cta) {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
body.redgate-rs-ext .rg-main h1,
body.redgate-rs-ext .rg-main h2,
body.redgate-rs-ext .rg-main h3 { letter-spacing: 0; }
body.redgate-rs-ext .rs-btn-primary,
body.redgate-rs-ext .rs-btn-rate,
body.redgate-rs-ext .rs-btn-login-sm { background: var(--rg-red) !important; border-color: var(--rg-red) !important; }
body.redgate-rs-ext .dl-btn-ios { color: #1a1a2e !important; }
body.redgate-rs-ext .dl-btn-ios:hover { color: #1a1a2e !important; }

.rg-help-faq {
  background: #f4f7fb;
  padding: 48px 0;
}
.rg-help-faq-head {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}
.rg-help-faq-head h2 {
  margin: 0 0 8px;
  color: #1f2633;
  font-size: 30px;
}
.rg-help-faq-head p {
  margin: 0;
  color: #66707d;
  line-height: 1.7;
}
.rg-help-faq .rs-faq-guide {
  max-width: 780px;
  margin: 0 auto 26px;
  padding: 22px 26px;
  border: 1px solid rgba(228, 86, 42, .35);
  border-radius: 8px;
  background: #fff7f2;
  text-align: center;
  box-shadow: 0 8px 24px rgba(28, 34, 44, .08);
}
.rg-help-faq .rs-faq-guide h3 {
  margin: 0 0 8px;
  color: var(--rg-red);
  font-size: 22px;
}
.rg-help-faq .rs-faq-guide p {
  margin: 0 0 14px;
  color: #59616d;
  line-height: 1.7;
}
.rg-help-faq .rs-faq-guide a,
.rg-help-faq .rs-faq-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--rg-red);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.rg-help-faq .rs-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 0;
  list-style: none;
}
.rg-help-faq .rs-faq-tabs a {
  display: block;
  padding: 8px 15px;
  border: 1px solid #dce3ec;
  border-radius: 999px;
  background: #fff;
  color: #334052;
  font-size: 14px;
  text-decoration: none;
}
.rg-help-faq .rs-faq-tabs a:hover,
.rg-help-faq .rs-faq-tabs a.active {
  border-color: var(--rg-red);
  background: var(--rg-red);
  color: #fff;
}
.rg-help-faq .rs-faq-content {
  max-width: 900px;
  min-height: 190px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #343d4b;
  line-height: 1.8;
  box-shadow: 0 12px 30px rgba(30, 39, 52, .08);
}
.rg-help-faq .rs-faq-content h4 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f4;
  color: var(--rg-red);
  font-size: 20px;
}
.rg-help-faq .rs-faq-content ul {
  margin: 10px 0;
  padding-left: 20px;
}
.rg-help-faq .rs-faq-content li {
  margin-bottom: 6px;
}
.rg-help-faq .rs-faq-cta {
  margin-top: 28px;
  text-align: center;
}
.rg-help-faq .rs-faq-cta p {
  margin: 0 0 12px;
  color: #66707d;
}
.rg-section-title {
  margin: 0 0 18px;
  color: #1f2633;
  font-size: 26px;
}

@media (max-width: 980px) {
  .rg-top-nav { display: none; }
  .rg-mobile-menu-toggle { display: inline-flex; }
  .rg-mobile-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: min(100% - 48px, 1180px);
    max-height: 0;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height .22s ease, opacity .18s ease, padding .18s ease;
  }
  .rg-mobile-menu.is-open {
    max-height: 520px;
    opacity: 1;
    padding: 0 0 16px;
  }
  .rg-mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
    color: #e7eff8;
    font-size: 14px;
    font-weight: 700;
  }
  .rg-mobile-menu a:hover {
    border-color: rgba(210,87,42,.45);
    background: rgba(210,87,42,.12);
    color: #fff;
  }
  .rg-mobile-menu .rg-mobile-menu-cta {
    justify-content: center;
    grid-column: 1 / -1;
    border-color: var(--rg-red);
    background: var(--rg-red);
    color: #fff;
  }
  .rg-home-grid,
  .rg-feature-grid,
  .rg-blog-layout,
  .rg-single-layout { grid-template-columns: 1fr; }
  .rg-home-copy h1 { font-size: 42px; }
  .rg-shortcut-grid,
  .rg-home-posts,
  .rg-rating-feed { grid-template-columns: 1fr 1fr; }
  .rg-device-panel { min-height: 360px; }
  .rg-phone { right: 24px; }
  .rg-metrics { left: 24px; bottom: 34px; }
}
@media (max-width: 640px) {
  .rg-wrap { width: min(100% - 28px, 1180px); }
  .rg-header-inner { min-height: 64px; }
  .rg-mobile-menu { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; }
  .rg-brand-logo-wide { display: none; }
  .rg-brand-logo-square { display: block; }
  .rg-home-hero { padding-top: 44px; }
  .rg-hero-logo-card { width: 220px; min-height: 64px; }
  .rg-section-heading-row { display: grid; align-items: start; }
  .rg-rating-heading-actions {
    justify-content: stretch;
  }
  .rg-rating-overall {
    width: 100%;
    min-width: 0;
  }
  .rg-section-action { width: 100%; }
  .rg-home-copy h1,
  .rg-page-hero h1 { font-size: 34px; }
  .rg-lead,
  .rg-page-hero p { font-size: 16px; }
  .rg-download-actions .rg-btn { width: 100%; justify-content: center; }
  .rg-shortcut-grid,
  .rg-feature-cards,
  .rg-home-posts,
  .rg-rating-feed { grid-template-columns: 1fr; }
  .rg-article-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .rg-device-panel {
    min-height: 0;
    padding: 28px 18px 24px;
    display: grid;
    gap: 22px;
  }
  .rg-phone,
  .rg-metrics {
    position: relative;
    inset: auto;
    transform: none;
  }
  .rg-phone {
    width: min(100%, 236px);
    margin: 0 auto;
    min-height: 308px;
  }
  .rg-metrics {
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
  }
  .rg-content-card { padding: 24px; }
  .rg-article h1 { font-size: 30px; }
  .rg-footer-grid { display: grid; }
  .rg-help-faq { padding: 36px 0; }
  .rg-help-faq .rs-faq-guide,
  .rg-help-faq .rs-faq-content { padding: 20px 16px; }
  .rg-help-faq .rs-faq-tabs { justify-content: flex-start; }
  .rg-help-faq .rs-faq-tabs a { font-size: 13px; padding: 7px 12px; }
}
