/* ================================================================
   ROUNDEL REPORT — Shared Stylesheet
   BMW specialist resource. Simi Valley, CA.
   All pages load this file. Edit once, updates everywhere.

   Palette:
     --rr-navy:      #0A1628   (primary dark)
     --rr-charcoal:  #131E2E   (elevated dark)
     --rr-mid:       #1D2B3A   (card dark)
     --rr-slate:     #8C94A0   (muted text)
     --rr-silver:    #CDD2DA   (secondary text)
     --rr-off-white: #F2F4F7   (page bg)
     --rr-white:     #FFFFFF
     --rr-blue:      #1C69D4   (BMW blue accent)
     --rr-blue-dim:  rgba(28,105,212,0.12)

   Type: Syne 700/800 (headings) / Inter 400/500/600/700 (body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Syne:wght@700;800&display=swap');

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

:root {
  --rr-navy:      #0A1628;
  --rr-charcoal:  #131E2E;
  --rr-mid:       #1D2B3A;
  --rr-slate:     #8C94A0;
  --rr-silver:    #CDD2DA;
  --rr-off-white: #F2F4F7;
  --rr-white:     #FFFFFF;
  --rr-blue:      #1C69D4;
  --rr-blue-dim:  rgba(28,105,212,0.12);
  --font-head:    'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
  --pad-h:        24px;
}

body {
  font-family: var(--font-body);
  background: var(--rr-off-white);
  color: var(--rr-navy);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p + p { margin-top: 1em; }

.rr-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}

/* ================================================================
   HEADER
================================================================ */

.rr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rr-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}
.rr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
/* Roundel mark — two concentric circles in CSS */
.rr-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rr-logo-mark-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rr-blue);
  opacity: 0.7;
}
.rr-logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--rr-white);
  letter-spacing: 0.5px;
}
.rr-logo-text span { color: var(--rr-slate); font-weight: 700; }

.rr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rr-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.rr-nav a:hover,
.rr-nav a.active { color: var(--rr-white); background: rgba(255,255,255,0.06); }
.rr-nav .rr-nav-cta {
  background: var(--rr-blue);
  color: var(--rr-white) !important;
  padding: 7px 16px;
  font-weight: 600;
  border-radius: 4px;
}
.rr-nav .rr-nav-cta:hover { background: #1558b0; }

.rr-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.rr-mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
}
@media (max-width: 860px) {
  .rr-nav { display: none; }
  .rr-mobile-menu-btn { display: flex; }
}

/* ================================================================
   BREADCRUMB
================================================================ */

.rr-breadcrumb {
  background: var(--rr-white);
  border-bottom: 1px solid #e4e8ee;
  padding: 10px 0;
}
.rr-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--rr-slate);
  flex-wrap: wrap;
}
.rr-breadcrumb-inner a { color: var(--rr-slate); transition: color 0.15s; }
.rr-breadcrumb-inner a:hover { color: var(--rr-blue); }
.rr-breadcrumb-inner .sep { color: #ccc; }
.rr-breadcrumb-inner span:last-child { color: var(--rr-navy); font-weight: 500; }

/* ================================================================
   BUTTONS
================================================================ */

.rr-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.rr-btn-primary { background: var(--rr-blue); color: var(--rr-white); }
.rr-btn-primary:hover { background: #1558b0; color: #fff; }
.rr-btn-dark { background: var(--rr-navy); color: var(--rr-white); }
.rr-btn-dark:hover { background: var(--rr-charcoal); color: #fff; }
.rr-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
}
.rr-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.rr-btn-ghost-dark {
  background: transparent;
  color: var(--rr-navy);
  border: 1px solid rgba(10,22,40,0.25);
}
.rr-btn-ghost-dark:hover { border-color: var(--rr-navy); }

/* ================================================================
   SECTION UTILITIES
================================================================ */

.rr-section      { padding: 72px 0; }
.rr-section-sm   { padding: 48px 0; }
.rr-section-dark { background: var(--rr-charcoal); }
.rr-section-mid  { background: var(--rr-mid); }
.rr-section-white{ background: var(--rr-white); }
.rr-section-navy { background: var(--rr-navy); }

.rr-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rr-blue);
  margin-bottom: 10px;
  display: block;
}
.rr-section-dark .rr-eyebrow,
.rr-section-mid .rr-eyebrow,
.rr-section-navy .rr-eyebrow { color: var(--rr-slate); }

.rr-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.rr-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--rr-navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.rr-section-dark .rr-h2,
.rr-section-mid  .rr-h2,
.rr-section-navy .rr-h2 { color: var(--rr-white); }

.rr-h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.rr-lead {
  font-size: 1.05rem;
  color: #3a4a5c;
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.rr-section-dark .rr-lead,
.rr-section-mid  .rr-lead,
.rr-section-navy .rr-lead { color: rgba(255,255,255,0.58); }

.rr-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 48px 0;
}
.rr-divider-light { background: #e0e5ec; }

/* ================================================================
   HERO
================================================================ */

.rr-hero {
  background: var(--rr-navy);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.rr-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,105,212,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.rr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rr-slate);
  margin-bottom: 20px;
}
.rr-hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rr-blue);
}
.rr-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--rr-white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 760px;
}
.rr-hero h1 em { font-style: normal; color: var(--rr-slate); }
.rr-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.rr-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page-level hero */
.rr-page-hero {
  background: var(--rr-navy);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.rr-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(28,105,212,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.rr-page-hero-inner { position: relative; z-index: 2; }
.rr-page-hero .rr-h1 { color: var(--rr-white); max-width: 800px; }
.rr-page-hero p {
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.8;
  margin-top: 12px;
}
.rr-page-hero .rr-eyebrow { color: var(--rr-slate); margin-bottom: 12px; }

/* ================================================================
   CONTENT GRID CARDS (dark bg spokes)
================================================================ */

.rr-spoke-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 40px;
}
.rr-spoke {
  background: var(--rr-charcoal);
  padding: 32px 28px;
  display: block;
  transition: background 0.15s;
  border-left: 2px solid transparent;
}
.rr-spoke:hover { background: #192636; border-left-color: var(--rr-blue); }
.rr-spoke-type {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rr-slate); margin-bottom: 10px;
}
.rr-spoke h3 {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 800;
  color: var(--rr-white); margin-bottom: 10px; line-height: 1.25;
}
.rr-spoke p { font-size: 13px; color: rgba(255,255,255,0.46); line-height: 1.65; }
.rr-spoke .rr-spoke-arrow {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--rr-slate); font-weight: 500;
}

/* ================================================================
   MODEL CARDS (light bg)
================================================================ */

.rr-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.rr-model-card {
  background: var(--rr-white);
  border: 1px solid #dde3ed;
  border-top: 3px solid var(--rr-navy);
  padding: 28px;
  transition: border-top-color 0.15s;
}
.rr-model-card:hover { border-top-color: var(--rr-blue); }
.rr-model-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 800;
  color: var(--rr-navy); margin-bottom: 10px;
}
.rr-model-card .rr-model-gen {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--rr-slate); margin-bottom: 6px;
}
.rr-model-card p { font-size: 14px; color: #3a4a5c; line-height: 1.7; }
.rr-model-card .rr-model-link {
  display: inline-block; margin-top: 14px;
  font-size: 13px; font-weight: 600; color: var(--rr-blue);
}

/* ================================================================
   SERVICE LIST (dark bg)
================================================================ */

.rr-service-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
}
.rr-service-item {
  background: var(--rr-mid);
  padding: 28px;
}
.rr-service-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--rr-white); margin-bottom: 8px; }
.rr-service-item p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.rr-service-item .rr-service-cta {
  display: inline-block; margin-top: 14px;
  font-size: 12px; font-weight: 600; color: var(--rr-blue); letter-spacing: 0.5px;
}

/* ================================================================
   ISSUE LIST (dark bg)
================================================================ */

.rr-issue-list { margin-top: 8px; }
.rr-issue {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.rr-issue:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.rr-issue-num {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: rgba(140,148,160,0.2);
  line-height: 1.2; padding-top: 2px;
}
.rr-issue h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--rr-white); margin-bottom: 8px; line-height: 1.4;
}
.rr-issue p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.75; }
.rr-issue a { color: var(--rr-slate); }
.rr-issue a:hover { color: var(--rr-blue); }

/* ================================================================
   FAQ (light bg)
================================================================ */

.rr-faq { margin-top: 40px; max-width: 820px; }
.rr-faq-item { border-bottom: 1px solid #dde3ed; padding: 24px 0; }
.rr-faq-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--rr-navy); margin-bottom: 10px; line-height: 1.5; }
.rr-faq-item p { font-size: 15px; color: #2e3a4a; line-height: 1.8; }

/* ================================================================
   ARTICLE CARDS — blog index
================================================================ */

.rr-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.rr-article {
  background: var(--rr-white);
  border: 1px solid #dde3ed;
  padding: 28px;
  display: flex; flex-direction: column;
}
.rr-article-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rr-blue); margin-bottom: 10px;
}
.rr-article h4 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  color: var(--rr-navy); margin-bottom: 10px; line-height: 1.3; flex: 1;
}
.rr-article p { font-size: 13px; color: #4a5a6c; line-height: 1.7; margin-bottom: 16px; }
.rr-article .rr-article-link {
  font-size: 13px; font-weight: 600; color: var(--rr-navy);
  border-bottom: 1px solid #c5ccda; padding-bottom: 2px; align-self: flex-start;
}
.rr-article .rr-article-link:hover { color: var(--rr-blue); border-color: var(--rr-blue); }

/* ================================================================
   ARTICLE BODY — blog / long-form
================================================================ */

.rr-article-body {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #1e2a38;
}
.rr-article-body h2 {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 800;
  color: var(--rr-navy);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.rr-article-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 800;
  color: var(--rr-navy);
  margin: 32px 0 12px;
  line-height: 1.3;
}
.rr-article-body p { margin-bottom: 1.2em; }
.rr-article-body ul, .rr-article-body ol {
  margin: 1em 0 1.4em 1.6em;
}
.rr-article-body li { margin-bottom: 0.5em; line-height: 1.75; }
.rr-article-body strong { font-weight: 700; color: var(--rr-navy); }
.rr-article-body a { color: var(--rr-blue); text-decoration: underline; text-underline-offset: 3px; }
.rr-article-body a:hover { color: #1558b0; }

/* Callout box */
.rr-callout {
  background: #fff;
  border-left: 4px solid var(--rr-blue);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.rr-callout p { margin: 0; font-size: 0.97rem; color: #2a3a4c; line-height: 1.75; }
.rr-callout strong { color: var(--rr-blue); }

/* Cost / spec table */
.rr-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.rr-spec-table th {
  background: var(--rr-navy);
  color: var(--rr-white);
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.rr-spec-table td { padding: 10px 14px; border-bottom: 1px solid #dde3ed; vertical-align: top; }
.rr-spec-table tr:nth-child(even) td { background: rgba(10,22,40,0.025); }
.rr-spec-table td:first-child { font-weight: 500; color: var(--rr-navy); }

/* ================================================================
   REFERRAL CTA — send to GAD
================================================================ */

.rr-referral {
  background: var(--rr-navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.rr-referral::before {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,105,212,0.12) 0%, transparent 70%);
}
.rr-referral-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 620px; margin: 0 auto;
}
.rr-referral h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--rr-white);
  margin-bottom: 16px; line-height: 1.15;
}
.rr-referral p {
  font-size: 1.02rem; color: rgba(255,255,255,0.58);
  line-height: 1.8; margin-bottom: 32px;
}
.rr-referral-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rr-referral-attr {
  margin-top: 28px; font-size: 12px; color: rgba(255,255,255,0.22); letter-spacing: 0.5px;
}
.rr-referral-attr a { color: rgba(255,255,255,0.36); }
.rr-referral-attr a:hover { color: rgba(255,255,255,0.65); }

/* ================================================================
   STAT STRIP
================================================================ */

.rr-stat-strip { background: var(--rr-charcoal); }
.rr-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
@media (max-width: 700px) { .rr-stat-grid { grid-template-columns: repeat(2, 1fr); } }
.rr-stat-box {
  background: var(--rr-charcoal);
  padding: 36px 20px;
  text-align: center;
}
.rr-stat-number {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  color: var(--rr-silver); display: block; line-height: 1;
}
.rr-stat-label { font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 8px; line-height: 1.4; }

/* ================================================================
   TWO-COL LAYOUT
================================================================ */

.rr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .rr-two-col { grid-template-columns: 1fr; gap: 32px; } }

.rr-two-col-wide {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .rr-two-col-wide { grid-template-columns: 1fr; gap: 32px; } }

/* ================================================================
   LIGHT CARDS (white bg sections)
================================================================ */

.rr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.rr-card {
  background: var(--rr-white);
  border: 1px solid #dde3ed;
  border-top: 3px solid var(--rr-blue);
  padding: 28px;
}
.rr-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  color: var(--rr-navy); margin-bottom: 10px;
}
.rr-card p { font-size: 14px; color: #3a4a5c; line-height: 1.7; }

/* Dark cards */
.rr-dark-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(0,0,0,0.2);
  margin-top: 36px;
}
.rr-dark-card {
  background: var(--rr-mid);
  padding: 28px;
  border-top: 2px solid rgba(140,148,160,0.18);
  transition: border-top-color 0.15s;
}
.rr-dark-card:hover { border-top-color: var(--rr-blue); }
.rr-dark-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 800;
  color: var(--rr-white); margin-bottom: 10px;
}
.rr-dark-card p { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.rr-dark-card a.rr-link { color: var(--rr-slate); font-size: 13px; font-weight: 600; display: inline-block; margin-top: 12px; }
.rr-dark-card a.rr-link:hover { color: var(--rr-blue); }

/* ================================================================
   SIDEBAR LAYOUT
================================================================ */

.rr-content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .rr-content-sidebar { grid-template-columns: 1fr; } }

.rr-sidebar-card {
  background: var(--rr-white);
  border: 1px solid #dde3ed;
  padding: 24px;
  margin-bottom: 20px;
}
.rr-sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 800;
  color: var(--rr-navy); margin-bottom: 12px;
}
.rr-sidebar-card p { font-size: 13px; color: #4a5a6c; line-height: 1.7; margin-bottom: 12px; }
.rr-sidebar-card ul { margin: 0 0 0 1.2em; }
.rr-sidebar-card li { font-size: 13px; color: #3a4a5c; margin-bottom: 6px; line-height: 1.6; }
.rr-sidebar-cta {
  background: var(--rr-blue);
  padding: 24px;
  margin-bottom: 20px;
}
.rr-sidebar-cta h4 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 800;
  color: var(--rr-white); margin-bottom: 8px;
}
.rr-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 14px; }
.rr-sidebar-cta .rr-btn { width: 100%; text-align: center; background: #fff; color: var(--rr-blue); display: block; }
.rr-sidebar-cta .rr-btn:hover { background: rgba(255,255,255,0.9); }
.rr-sidebar-links a {
  display: block; font-size: 13px; color: #3a4a5c;
  padding: 8px 0; border-bottom: 1px solid #eaeff5; line-height: 1.4;
}
.rr-sidebar-links a:hover { color: var(--rr-blue); }
.rr-sidebar-links a:last-child { border-bottom: none; }

/* ================================================================
   ROUNDEL DECORATION
================================================================ */

.rr-roundel-deco {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.rr-roundel-deco-inner {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--rr-blue);
  opacity: 0.5;
}

/* ================================================================
   FOOTER
================================================================ */

.rr-footer {
  background: var(--rr-charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.rr-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .rr-footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.rr-footer-brand p {
  margin-top: 14px;
  font-size: 13px; color: rgba(255,255,255,0.38);
  line-height: 1.7; max-width: 280px;
}
.rr-footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rr-slate); margin-bottom: 16px;
}
.rr-footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.48); margin-bottom: 10px; transition: color 0.15s;
}
.rr-footer-col a:hover { color: var(--rr-white); }
.rr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.rr-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.rr-footer-service-link { font-size: 12px; color: rgba(255,255,255,0.28); }
.rr-footer-service-link a { color: rgba(255,255,255,0.38); text-decoration: underline; }
.rr-footer-service-link a:hover { color: rgba(255,255,255,0.65); }

/* ================================================================
   RESPONSIVE
================================================================ */

@media (max-width: 600px) {
  .rr-section { padding: 48px 0; }
  .rr-hero { padding: 64px 0 52px; }
  .rr-page-hero { padding: 48px 0 36px; }
  .rr-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
