/*
  River Rock Insurance -- WordPress page-template stylesheet
  Brand: Montserrat / Deep Navy #23214D / Light Blue #1E8BC3
  Source of truth: Manus static HTML handoff (RiverRock-WordPress-Static-Handoff).
  All selectors are prefixed with "rr-" so this cannot collide with Hello Elementor,
  Elementor Pro, or any other client's page templates living in the same theme folder.
  Enqueued directly inside each self-contained template's <head> -- no functions.php edit required.
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

.rr-page {
  --rr-navy: #23214D;
  --rr-navy-mid: #2E2B5F;
  --rr-blue: #1E8BC3;
  --rr-blue-hover: #1A6E9A;
  --rr-blue-light: #4AAAD8;
  --rr-blue-pale: #EBF6FC;
  --rr-canvas: #FDFAF5;
  --rr-surface: #FFFFFF;
  --rr-soft: #F5F7FA;
  --rr-ink: #3D3A52;
  --rr-muted: #6B6882;
  --rr-border: #E2EBF0;
  --rr-radius: 12px;
  --rr-shadow: 0 10px 28px rgba(35,33,77,.10);
  margin: 0;
  background: var(--rr-canvas);
  color: var(--rr-ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.rr-page, .rr-page * { box-sizing: border-box; }
.rr-page img { max-width: 100%; display: block; }
.rr-page a { color: inherit; text-decoration: none; }
.rr-container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 16px; }
@media (min-width: 640px) { .rr-container { padding-inline: 24px; } }
@media (min-width: 1024px) { .rr-container { padding-inline: 32px; } }

.rr-utility { display: none; background: var(--rr-navy); color: rgba(255,255,255,.75); font-size: 12px; }
.rr-utility-inner { min-height: 32px; display: flex; justify-content: space-between; align-items: center; }
.rr-utility-links { display: flex; gap: 24px; }
.rr-site-header { background: #fff; border-bottom: 1px solid var(--rr-border); position: sticky; top: 0; z-index: 20; }
.rr-nav { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.rr-brand img { width: 150px; height: auto; }
.rr-desktop-nav { display: none; align-items: center; gap: 2px; }
.rr-desktop-nav a { color: var(--rr-navy) !important; padding: 9px 13px; font-weight: 700; font-size: 14px; border-radius: 6px; }
.rr-desktop-nav a:hover { color: var(--rr-blue) !important; background: var(--rr-blue-pale); }
.rr-nav-actions { display: none; align-items: center; gap: 10px; }
.rr-shop-link { color: var(--rr-navy) !important; font-size: 13px; font-weight: 700; }
.rr-menu-toggle { appearance: none !important; border: 0 !important; background: var(--rr-blue-pale) !important; color: var(--rr-navy) !important; border-radius: 6px !important; padding: 10px 12px !important; font: inherit !important; font-weight: 800 !important; cursor: pointer !important; }
.rr-mobile-menu { display: none; background: #fff; border-top: 1px solid var(--rr-border); padding: 16px 0 22px; }
.rr-mobile-menu.rr-open { display: block; }
.rr-mobile-menu a { display: block; padding: 12px 0; color: var(--rr-navy) !important; font-size: 15px; font-weight: 700; border-bottom: 1px solid var(--rr-border); }
.rr-mobile-menu .rr-btn { margin-top: 16px; width: 100%; }

.rr-nav-dropdown { position: relative; }
.rr-nav-dropdown-trigger { display: inline-flex !important; align-items: center; gap: 4px; appearance: none !important; border: 0 !important; background: none !important; color: var(--rr-navy) !important; padding: 9px 13px !important; font: inherit !important; font-weight: 700 !important; font-size: 14px !important; border-radius: 6px !important; cursor: pointer; }
.rr-nav-dropdown-trigger:hover { color: var(--rr-blue) !important; background: var(--rr-blue-pale) !important; }
.rr-nav-dropdown-caret { font-size: 10px; transition: transform .15s ease; }
.rr-nav-dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 6px; min-width: 210px; background: #fff; border: 1px solid var(--rr-border); border-radius: 10px; box-shadow: var(--rr-shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .15s ease; z-index: 30; }
.rr-nav-dropdown-menu a { display: block !important; padding: 9px 12px !important; border-radius: 6px !important; font-size: 14px !important; font-weight: 700 !important; color: var(--rr-navy) !important; }
.rr-nav-dropdown-menu a:hover { background: var(--rr-blue-pale) !important; color: var(--rr-blue) !important; }
.rr-nav-dropdown:hover .rr-nav-dropdown-menu,
.rr-nav-dropdown:focus-within .rr-nav-dropdown-menu,
.rr-nav-dropdown.rr-open .rr-nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.rr-nav-dropdown:hover .rr-nav-dropdown-caret,
.rr-nav-dropdown.rr-open .rr-nav-dropdown-caret { transform: rotate(180deg); }

.rr-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 28px; border-radius: 8px; font-size: 14px; line-height: 1.2; font-weight: 700; letter-spacing: .01em; transition: .2s ease; cursor: pointer; border: 2px solid transparent; }
.rr-btn-primary { color: #fff !important; background: var(--rr-blue); }
.rr-btn-primary:hover { background: var(--rr-blue-hover); box-shadow: 0 6px 18px rgba(30,139,195,.28); }
.rr-btn-outline { color: var(--rr-blue) !important; background: transparent; border-color: rgba(30,139,195,.5); }
.rr-btn-outline:hover { background: rgba(35,33,77,.05); border-color: var(--rr-navy); }
.rr-btn-outline-white { color: #fff !important; border-color: rgba(255,255,255,.55); }
.rr-btn-outline-white:hover { background: rgba(255,255,255,.1); }

.rr-hero { position: relative; overflow: hidden; padding: 88px 0 92px; background: linear-gradient(rgba(10,8,40,.38), rgba(10,8,40,.38)), var(--rr-hero-image, none); background-size: cover; background-position: center; color: #fff; }
.rr-hero:after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--rr-blue); }
.rr-hero-solid { background: var(--rr-navy) !important; }
.rr-hero-content { position: relative; z-index: 1; max-width: 760px; }
.rr-eyebrow { display: inline-flex; align-items: center; background: rgba(30,139,195,.18); border: 1px solid rgba(30,139,195,.45); color: var(--rr-blue-light); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 999px; margin: 0 0 14px; }
.rr-hero h1 { margin: 0; max-width: 760px; font-size: clamp(36px, 5vw, 60px); line-height: 1.25; font-weight: 900; letter-spacing: -.03em; }
.rr-hero p { margin: 18px 0 0; max-width: 700px; color: rgba(255,255,255,.85); font-size: clamp(17px, 2vw, 20px); font-weight: 500; }

.rr-content-section { padding: 68px 0; }
.rr-content-section.rr-soft { background: var(--rr-soft); }
.rr-content-section.rr-blue-pale { background: var(--rr-blue-pale); }
.rr-section-label { margin: 0 0 8px; color: var(--rr-blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.rr-section-title { margin: 0 0 18px; padding-top: 16px; position: relative; color: var(--rr-navy); font-size: clamp(29px, 3.5vw, 38px); line-height: 1.15; font-weight: 900; letter-spacing: -.025em; }
.rr-section-title:before { content: ''; position: absolute; top: 0; width: 42px; height: 3px; background: var(--rr-blue); }
.rr-section-lead { color: var(--rr-muted); max-width: 760px; font-size: 18px; font-weight: 500; }

.rr-grid { display: grid; gap: 22px; }
.rr-grid-2 { grid-template-columns: 1fr; }
.rr-grid-3 { grid-template-columns: 1fr; }
.rr-card { background: #fff; border: 1px solid var(--rr-border); border-radius: var(--rr-radius); padding: 28px; box-shadow: 0 2px 12px rgba(35,33,77,.04); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.rr-card:hover { box-shadow: 0 8px 32px rgba(30,139,195,.12); transform: translateY(-2px); border-color: rgba(30,139,195,.4); }
.rr-card h2, .rr-card h3 { margin: 0 0 10px; color: var(--rr-navy); font-weight: 800; line-height: 1.25; }
.rr-card h3 { font-size: 20px; }
.rr-card p { margin: 0; color: var(--rr-muted); }
.rr-link-arrow { display: inline-flex; gap: 8px; align-items: center; color: var(--rr-blue) !important; font-size: 14px; font-weight: 800; margin-top: 16px; }

.rr-split { display: grid; grid-template-columns: 1fr; gap: 42px; align-items: center; }
.rr-media-frame { min-height: 320px; border-radius: 14px; overflow: hidden; background: #dceef7; }
.rr-media-frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.rr-prose { max-width: 820px; }
.rr-prose h2 { margin: 40px 0 14px; padding-top: 16px; position: relative; color: var(--rr-navy); font-size: 28px; line-height: 1.2; font-weight: 900; }
.rr-prose h2:before { content: ''; position: absolute; top: 0; left: 0; width: 42px; height: 3px; background: var(--rr-blue); }
.rr-prose h2:first-child { margin-top: 0; }
.rr-prose h3 { margin: 28px 0 10px; color: var(--rr-navy); font-size: 20px; font-weight: 800; }
.rr-prose p { margin: 0 0 17px; color: var(--rr-ink); font-size: 17px; }
.rr-prose ul { padding-left: 22px; margin: 0 0 18px; }
.rr-prose li { margin-bottom: 8px; }
.rr-callout { padding: 26px; border-left: 4px solid var(--rr-blue); background: var(--rr-blue-pale); border-radius: 0 10px 10px 0; color: var(--rr-navy); font-weight: 600; }

.rr-cta-band { background: var(--rr-blue); color: #fff; padding: 54px 0; }
.rr-cta-band .rr-container { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.rr-cta-band h2 { margin: 0; font-size: clamp(26px, 3.5vw, 38px); line-height: 1.15; font-weight: 900; }
.rr-cta-band p { margin: 10px 0 0; color: rgba(255,255,255,.85); max-width: 670px; }
.rr-cta-white { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; background: #fff; color: var(--rr-navy) !important; transition: .2s ease; }
.rr-cta-white:hover { background: var(--rr-blue-pale); }
.rr-cta-navy { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; background: var(--rr-navy); color: #fff !important; transition: .2s ease; }
.rr-cta-navy:hover { background: var(--rr-navy-mid); }

.rr-breadcrumb-bar { background: #F6F9FB; border-bottom: 1px solid var(--rr-border); padding: 10px 0; }
.rr-breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.rr-breadcrumb-list li { display: flex; align-items: center; gap: 4px; }
.rr-breadcrumb-list a { color: #4C7893 !important; font-weight: 600; }
.rr-breadcrumb-list a:hover { color: var(--rr-blue) !important; }
.rr-breadcrumb-sep { color: #A9B7C4; display: inline-flex; font-size: 12px; }
.rr-breadcrumb-current { color: var(--rr-navy); font-weight: 700; }
.rr-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.rr-contact-list { display: grid; gap: 12px; margin-top: 22px; }
.rr-contact-list a, .rr-contact-list p { margin: 0; color: var(--rr-navy) !important; font-weight: 700; }

.rr-form-card { background: #fff; border: 1px solid var(--rr-border); padding: 25px; border-radius: 12px; box-shadow: var(--rr-shadow); scroll-margin-top: 100px; }
.rr-form-card h3 { margin: 0 0 8px; color: var(--rr-navy); font-size: 21px; }
.rr-form-card > p { margin: 0 0 18px; color: var(--rr-muted); font-size: 14px; }

.rr-site-footer { background: var(--rr-navy); color: rgba(255,255,255,.72); padding: 48px 0 24px; }
.rr-footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.rr-footer-brand { max-width: 360px; }
.rr-footer-brand img { background: #fff; border-radius: 6px; padding: 6px; max-width: 160px; margin-bottom: 14px; }
.rr-site-footer h3 { margin: 0 0 12px; color: #fff; font-size: 14px; font-weight: 800; }
.rr-site-footer a { display: block; color: rgba(255,255,255,.72) !important; font-size: 14px; margin: 7px 0; }
.rr-site-footer a:hover { color: var(--rr-blue-light) !important; }
.rr-footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 36px; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12px; }

@media (min-width: 768px) {
  .rr-utility { display: block; }
  .rr-grid-2 { grid-template-columns: repeat(2,1fr); }
  .rr-grid-3 { grid-template-columns: repeat(3,1fr); }
  .rr-split { grid-template-columns: 1fr 1fr; }
  .rr-footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .rr-cta-band .rr-container { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1080px) {
  .rr-desktop-nav, .rr-nav-actions { display: flex; }
  .rr-menu-toggle { display: none; }
}

/* ── Resources: filter bar + dynamic card grid (added v1.1) ── */
.rr-resource-filter { position: sticky; top: 80px; z-index: 15; background: #fff; border-bottom: 1px solid var(--rr-border); }
.rr-resource-filter-inner { display: flex; gap: 6px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.rr-resource-filter-inner::-webkit-scrollbar { display: none; }
.rr-pill { flex: 0 0 auto; appearance: none !important; border: 0 !important; cursor: pointer; white-space: nowrap; padding: 9px 18px !important; border-radius: 999px !important; font: inherit !important; font-size: 14px !important; font-weight: 700 !important; color: var(--rr-muted) !important; background: var(--rr-soft) !important; box-shadow: none !important; transition: .15s ease; }
.rr-pill:hover { color: var(--rr-navy) !important; background: var(--rr-blue-pale) !important; }
.rr-pill.rr-pill-active { color: #fff !important; background: var(--rr-blue) !important; box-shadow: 0 2px 10px rgba(30,139,195,.28) !important; }

.rr-resource-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.rr-resource-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--rr-border); border-radius: var(--rr-radius); overflow: hidden; box-shadow: 0 2px 12px rgba(35,33,77,.04); transition: .2s ease; }
.rr-resource-card:hover { box-shadow: var(--rr-shadow); transform: translateY(-2px); }
.rr-resource-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--rr-blue-pale); }
.rr-resource-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.rr-resource-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.rr-resource-play span { width: 52px; height: 52px; border-radius: 50%; background: rgba(35,33,77,.72); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.rr-resource-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #fff; background: var(--rr-blue); padding: 5px 11px; border-radius: 999px; }
.rr-resource-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.rr-resource-meta { display: flex; align-items: center; gap: 6px; color: var(--rr-muted); font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.rr-resource-meta .rr-resource-kind { margin-left: auto; text-transform: capitalize; }
.rr-resource-body h3 { margin: 0 0 8px; color: var(--rr-navy); font-size: 18px; font-weight: 800; line-height: 1.3; }
.rr-resource-body p { margin: 0; color: var(--rr-muted); font-size: 14px; flex: 1; }
.rr-resource-cta { margin-top: 14px; color: var(--rr-blue); font-size: 14px; font-weight: 800; }
.rr-resource-empty { display: none; text-align: center; padding: 70px 20px; color: var(--rr-muted); }
.rr-resource-empty h3 { color: var(--rr-navy); margin: 0 0 6px; font-size: 18px; }
.rr-resource-empty.rr-visible { display: block; }

@media (min-width: 700px) { .rr-resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .rr-resource-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Home page (rebuilt v1.6 to match live site exactly -- completely different
     layout from every other page: light hero, no dark overlay, many more sections) ── */
.rr-home-hero { position: relative; background: #F7F9FA; border-bottom: 1px solid var(--rr-border); overflow: hidden; }
.rr-home-hero:after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--rr-blue); }
.rr-home-hero-mobile-img { display: block; width: 100%; height: 208px; overflow: hidden; }
.rr-home-hero-mobile-img img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 30%; }
.rr-home-hero-grid { display: grid; grid-template-columns: 1fr; padding-block: 32px; }
.rr-home-hero-text { display: flex; flex-direction: column; justify-content: center; }
.rr-home-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,139,195,.12); border: 1px solid rgba(30,139,195,.30); color: var(--rr-blue-hover); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; padding: 6px 14px; border-radius: 999px; margin: 0 0 20px; width: fit-content; }
.rr-home-hero-text h1 { color: var(--rr-navy); font-size: clamp(30px, 6vw, 60px); font-weight: 900; line-height: 1.1; margin: 0 0 20px; }
.rr-home-hero-text h1 span { color: var(--rr-blue); }
.rr-home-hero-text p.rr-home-hero-lead { color: var(--rr-muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.6; font-weight: 500; max-width: 32rem; margin: 0 0 28px; }
.rr-home-hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.rr-home-hero-cta-row { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.rr-home-phone-link { display: inline-flex; align-items: center; gap: 8px; color: var(--rr-navy); font-weight: 700; font-size: 16px; white-space: nowrap; }
.rr-home-phone-link:hover { color: var(--rr-blue); }
.rr-home-quote-outline { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 14px 24px; border-radius: 6px; border: 1px solid rgba(74,170,216,.6); color: var(--rr-blue); background: transparent; width: fit-content; }
.rr-home-quote-outline:hover { background: rgba(30,139,195,.06); }
.rr-home-hero-image-wrap { position: relative; display: none; }
.rr-home-hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.rr-home-stat-card { position: absolute; bottom: 40px; left: 24px; background: #fff; border-radius: 12px; box-shadow: 0 20px 40px rgba(35,33,77,.18); padding: 20px; max-width: 220px; z-index: 2; }
.rr-home-stat-card .rr-home-stat-num { color: var(--rr-blue); font-weight: 900; font-size: 30px; line-height: 1; }
.rr-home-stat-card .rr-home-stat-label { color: var(--rr-navy); font-weight: 700; font-size: 14px; margin-top: 4px; }
.rr-home-stat-card .rr-home-stat-sub { color: var(--rr-muted); font-size: 12px; margin-top: 2px; }
.rr-home-carriers { padding: 8px 0 32px; }
.rr-home-carriers-label { text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: #5B8AAA; margin: 0 0 24px; }
.rr-home-carriers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: center; justify-items: center; }
.rr-home-carriers-grid img { max-height: 40px; max-width: 100%; width: auto; object-fit: contain; }

.rr-home-reviews { padding: 56px 0; background: #fff; }
.rr-home-reviews .rr-container { max-width: 900px; }

.rr-home-bio { padding: 48px 0; background: #FBF9F3; border-bottom: 1px solid var(--rr-border); }
.rr-home-bio-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; max-width: 56rem; margin-inline: auto; }
.rr-home-bio-photo { width: 144px; height: 144px; border-radius: 999px; overflow: hidden; border: 4px solid #fff; box-shadow: 0 10px 28px rgba(35,33,77,.10); flex-shrink: 0; }
.rr-home-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.rr-home-bio-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--rr-blue); margin: 0 0 8px; }
.rr-home-bio h2 { color: var(--rr-navy); font-size: clamp(24px, 3vw, 30px); font-weight: 900; margin: 0 0 12px; }
.rr-home-bio p { color: #736F91; font-size: 16px; line-height: 1.6; margin: 0 0 20px; }

.rr-home-section { padding: 80px 0; }
.rr-home-section.rr-home-canvas { background: var(--rr-canvas); }
.rr-home-section.rr-home-white { background: #fff; border-top: 1px solid var(--rr-border); }
.rr-home-section.rr-home-blue-tint { background: var(--rr-blue-pale); }
.rr-home-section-head { text-align: center; margin-bottom: 56px; }
.rr-home-section-head h2 { color: var(--rr-navy); font-size: clamp(28px, 4vw, 38px); font-weight: 900; margin: 0; padding-top: 16px; position: relative; display: inline-block; }
.rr-home-section-head h2:before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 42px; height: 3px; background: var(--rr-blue); }
.rr-home-section-head p { color: var(--rr-muted); font-size: 18px; margin: 16px auto 0; max-width: 42rem; }
.rr-home-section-head-split { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.rr-home-section-head-split .rr-home-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--rr-blue); margin: 0 0 8px; }
.rr-home-section-head-split h2 { color: var(--rr-navy); font-size: clamp(28px, 4vw, 38px); font-weight: 900; margin: 0; padding-top: 16px; position: relative; }
.rr-home-section-head-split h2:before { content: ''; position: absolute; top: 0; left: 0; width: 42px; height: 3px; background: var(--rr-blue); }
.rr-home-section-head-split p { color: var(--rr-muted); font-size: 18px; margin: 12px 0 0; max-width: 36rem; }
.rr-home-view-all { display: inline-flex; align-items: center; gap: 8px; color: var(--rr-blue) !important; font-weight: 700; font-size: 14px; }

.rr-home-services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.rr-home-service-card { display: block; background: #fff; border: 1px solid var(--rr-border); border-radius: var(--rr-radius); padding: 28px; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.rr-home-service-card:hover { box-shadow: 0 8px 32px rgba(30,139,195,.12); transform: translateY(-2px); border-color: rgba(30,139,195,.4); }
.rr-home-service-card h3 { color: var(--rr-navy) !important; font-weight: 700; font-size: 18px; margin: 0 0 8px; }
.rr-home-service-card p { color: var(--rr-muted); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.rr-home-service-card .rr-home-learn-more { color: var(--rr-blue) !important; font-size: 14px; font-weight: 700; }

.rr-home-steps-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.rr-home-step { position: relative; padding-top: 32px; }
.rr-home-step-num-bg { position: absolute; top: -16px; left: -8px; color: rgba(30,139,195,.12); font-weight: 900; font-size: 96px; line-height: 1; user-select: none; }
.rr-home-step-body { position: relative; z-index: 1; }
.rr-home-step-circle { width: 40px; height: 40px; border-radius: 999px; background: var(--rr-blue); color: #fff !important; font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 4px 10px rgba(30,139,195,.3); }
.rr-home-step h3 { color: var(--rr-navy); font-weight: 700; font-size: 20px; margin: 0 0 8px; }
.rr-home-step p { color: var(--rr-muted); font-size: 14px; line-height: 1.6; margin: 0; }

.rr-home-savings-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 48rem; margin: 0 auto; }
.rr-home-savings-card { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; padding: 32px; box-shadow: 0 4px 14px rgba(35,33,77,.08); }
.rr-home-savings-tag { display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--rr-blue) !important; background: rgba(30,139,195,.10); padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.rr-home-savings-amount { color: var(--rr-navy); font-weight: 900; font-size: clamp(30px, 5vw, 44px); line-height: 1; margin-bottom: 12px; }
.rr-home-savings-desc { color: #6B6685; font-size: 14px; line-height: 1.6; margin: 0; }
.rr-home-savings-footer { text-align: center; margin-top: 40px; }
.rr-home-savings-quote { color: #6B6685; font-size: 16px; font-style: italic; max-width: 42rem; margin: 0 auto 24px; }

.rr-home-trust { padding: 32px 0; background: #F7F9FB; border-bottom: 1px solid var(--rr-border); }
.rr-home-trust-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.rr-home-trust-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(30,139,195,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--rr-blue); }
.rr-home-trust h3 { color: var(--rr-navy); font-weight: 900; font-size: 18px; margin: 0; line-height: 1.25; }
.rr-home-trust .rr-home-trust-sub { color: var(--rr-blue); font-weight: 600; font-size: 14px; margin: 2px 0 8px; }
.rr-home-trust p { color: #6B6685; font-size: 14px; line-height: 1.6; margin: 0; }

.rr-home-faq-box { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; box-shadow: 0 2px 12px rgba(35,33,77,.04); padding: 0 20px; max-width: 48rem; margin: 0 auto; }
.rr-home-faq-item { border-bottom: 1px solid var(--rr-border); }
.rr-home-faq-item:last-child { border-bottom: 0; }
.rr-home-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none !important; border: 0 !important; text-align: left; padding: 20px 0; font: inherit; font-weight: 700; font-size: 16px; color: var(--rr-navy) !important; cursor: pointer; }
.rr-home-faq-q:hover { color: var(--rr-blue) !important; }
.rr-home-faq-caret { flex-shrink: 0; font-size: 13px; color: var(--rr-blue); transition: transform .2s ease; }
.rr-home-faq-item.rr-open .rr-home-faq-caret { transform: rotate(180deg); }
.rr-home-faq-a { display: none; padding: 0 0 20px; color: #6B6685; font-size: 14px; line-height: 1.6; }
.rr-home-faq-item.rr-open .rr-home-faq-a { display: block; }

.rr-home-areas-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.rr-home-area-card { display: block; background: #fff; border: 1px solid var(--rr-border); border-radius: 8px; padding: 24px; transition: box-shadow .2s ease, transform .2s ease; }
.rr-home-area-card:hover { box-shadow: 0 10px 24px rgba(35,33,77,.1); transform: translateY(-2px); }
.rr-home-area-card svg { color: var(--rr-blue); margin-bottom: 12px; }
.rr-home-area-card h3 { color: var(--rr-navy) !important; font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.rr-home-area-card p { color: var(--rr-muted); font-size: 14px; line-height: 1.6; margin: 0; }

.rr-home-quote-section { padding: 80px 0; background: var(--rr-blue-pale); }
.rr-home-quote-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.rr-home-quote-grid h2 { color: var(--rr-navy); font-weight: 900; font-size: clamp(28px, 4vw, 38px); margin: 0 0 16px; }
.rr-home-quote-disclaimer { color: #6B6685; font-size: 13px; font-style: italic; line-height: 1.6; margin: 0 0 24px; padding-bottom: 20px; border-bottom: 1px solid var(--rr-border); }
.rr-home-quote-body { color: var(--rr-muted); font-size: 18px; line-height: 1.6; margin: 0 0 28px; }
.rr-home-quote-list { list-style: none; margin: 0 0 36px; padding: 0; display: grid; gap: 12px; }
.rr-home-quote-list li { display: flex; align-items: flex-start; gap: 10px; color: #4A4768; font-size: 14px; }
.rr-home-quote-list li:before { content: '\2713'; color: var(--rr-blue-light); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.rr-home-quote-phone-card { padding: 24px; background: #fff; border: 1px solid var(--rr-border); border-radius: 10px; box-shadow: 0 2px 12px rgba(35,33,77,.04); }
.rr-home-quote-phone-card .rr-home-quote-phone-label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: #8A87A0; margin: 0 0 10px; }
.rr-home-quote-phone-card .rr-home-quote-phone-link { display: flex; align-items: center; gap: 10px; color: var(--rr-navy) !important; font-weight: 900; font-size: 26px; }
.rr-home-quote-phone-card .rr-home-quote-phone-link:hover { color: var(--rr-blue) !important; }
.rr-home-quote-phone-card .rr-home-quote-phone-sub { color: #8A87A0; font-size: 12px; margin: 8px 0 0; }
.rr-home-quote-form-card { background: #fff; border-radius: 12px; padding: 12px 12px; box-shadow: 0 20px 44px rgba(35,33,77,.16); }

@media (min-width: 480px) {
  .rr-home-hero-cta-row { flex-direction: row; align-items: center; }
}
@media (min-width: 640px) {
  .rr-home-carriers-grid { grid-template-columns: repeat(4, 1fr); }
  .rr-home-bio-inner { flex-direction: row; text-align: left; }
}
@media (min-width: 700px) {
  .rr-home-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .rr-home-hero-mobile-img { display: none; }
  .rr-home-carriers-grid { grid-template-columns: repeat(8, 1fr); }
  .rr-home-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .rr-home-savings-grid { grid-template-columns: repeat(2, 1fr); }
  .rr-home-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .rr-home-hero-grid { position: relative; grid-template-columns: 1fr 1fr; gap: 0; min-height: 420px; }
  .rr-home-hero-text { padding-right: 48px; }
  .rr-home-hero-image-wrap { display: block; position: absolute; top: 0; right: -32px; bottom: 0; width: 50%; }
  .rr-home-services-grid { grid-template-columns: repeat(3, 1fr); }
  .rr-home-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .rr-home-quote-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (min-width: 1280px) {
  .rr-home-areas-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Shared "page bio" (compact Thomas Gray intro used on Medicare and similar pages) ── */
.rr-page-bio { padding: 40px 0; background: #FBF9F3; border-bottom: 1px solid var(--rr-border); }
.rr-page-bio-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; max-width: 56rem; margin-inline: auto; }
.rr-page-bio-photo { width: 128px; height: 128px; border-radius: 999px; overflow: hidden; border: 4px solid #fff; box-shadow: 0 8px 20px rgba(35,33,77,.10); flex-shrink: 0; }
.rr-page-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.rr-page-bio-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--rr-blue); margin: 0 0 4px; }
.rr-page-bio h2 { color: var(--rr-navy); font-size: 22px; font-weight: 900; margin: 0 0 8px; }
.rr-page-bio p { color: #736F91; font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
@media (min-width: 640px) { .rr-page-bio-inner { flex-direction: row; text-align: left; } }

/* ── Medicare plan comparison cards ── */
.rr-plan-list { display: grid; gap: 40px; }
.rr-plan-card { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(35,33,77,.05); transition: box-shadow .2s ease; }
.rr-plan-card:hover { box-shadow: 0 8px 24px rgba(35,33,77,.09); }
.rr-plan-bar { height: 8px; }
.rr-plan-body { padding: 32px; }
.rr-plan-grid { display: grid; gap: 32px; }
.rr-plan-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.rr-plan-head h3 { color: var(--rr-navy); font-size: 24px; font-weight: 900; margin: 0; }
.rr-plan-badge { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #fff; padding: 4px 10px; border-radius: 999px; }
.rr-plan-desc { color: var(--rr-muted); line-height: 1.6; margin: 0 0 24px; }
.rr-plan-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--rr-blue) !important; font-weight: 700; font-size: 14px; }
.rr-plan-lists { display: grid; gap: 24px; }
.rr-plan-list-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 12px; }
.rr-plan-list-label.rr-plan-benefits-label { color: var(--rr-blue); }
.rr-plan-list-label.rr-plan-considerations-label { color: #8A87A0; }
.rr-plan-benefits, .rr-plan-considerations { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.rr-plan-benefits li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #514D6B; }
.rr-plan-benefits li:before { content: '\2713'; color: var(--rr-blue); font-weight: 900; flex-shrink: 0; }
.rr-plan-considerations li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #6B6685; }
.rr-plan-considerations li:before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: #C6C3D6; flex-shrink: 0; margin-top: 6px; }
@media (min-width: 768px) {
  .rr-plan-grid { grid-template-columns: 1fr 1fr; }
  .rr-plan-lists { grid-template-columns: 1fr 1fr; }
}

/* ── Navy quote-CTA-with-form (used on Medicare and similar deep pages) ── */
.rr-quote-cta-navy { padding: 80px 0; background: var(--rr-navy); }
.rr-quote-cta-navy-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.rr-quote-cta-navy h2 { color: #fff; font-weight: 900; font-size: clamp(28px, 4vw, 38px); margin: 0 0 20px; padding-top: 16px; position: relative; }
.rr-quote-cta-navy h2:before { content: ''; position: absolute; top: 0; left: 0; width: 42px; height: 3px; background: var(--rr-blue-light); }
.rr-quote-cta-navy p.rr-quote-cta-body { color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.6; margin: 0 0 28px; }
.rr-quote-cta-navy .rr-home-phone-link { color: #fff !important; font-weight: 900; font-size: 24px; }
.rr-quote-cta-navy .rr-home-phone-link:hover { color: var(--rr-blue-light) !important; }
.rr-quote-cta-navy .rr-quote-cta-phone-sub { color: rgba(255,255,255,.4); font-size: 14px; margin: 8px 0 20px; }
.rr-quote-cta-outline-white { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; padding: 10px 24px; border-radius: 6px; border: 2px solid #fff; color: #fff !important; background: transparent; }
.rr-quote-cta-outline-white:hover { background: #fff; color: var(--rr-navy) !important; }
.rr-quote-cta-navy-form { background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 20px 44px rgba(0,0,0,.25); }
@media (min-width: 1024px) { .rr-quote-cta-navy-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* ── City cards grid (California hub) ── */
.rr-city-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.rr-city-card { display: block; border-radius: 8px; padding: 24px; border: 1px solid var(--rr-border); background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.rr-city-card:hover { box-shadow: 0 10px 24px rgba(35,33,77,.1); transform: translateY(-2px); }
.rr-city-card svg { color: var(--rr-blue); margin-bottom: 12px; }
.rr-city-card h3 { color: var(--rr-navy) !important; font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.rr-city-card p { color: var(--rr-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.rr-city-card.rr-highlight { background: var(--rr-navy); border-color: var(--rr-navy); }
.rr-city-card.rr-highlight svg { color: var(--rr-blue-light); }
.rr-city-card.rr-highlight h3 { color: #fff !important; }
.rr-city-card.rr-highlight p { color: rgba(255,255,255,.7); }
@media (min-width: 640px) { .rr-city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rr-city-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Simple checklist (California "Why Local" section, reused elsewhere) ── */
.rr-check-list { display: grid; gap: 16px; }
.rr-check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--rr-ink); line-height: 1.6; list-style: none; }
.rr-check-list li:before { content: '\2713'; color: var(--rr-blue); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── 3-column navy CTA with video (California, and reusable elsewhere) ── */
.rr-quote-cta-navy-3col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.rr-quote-cta-video-label { color: rgba(255,255,255,.6); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 12px; }
.rr-quote-cta-video-frame { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 44px rgba(0,0,0,.3); aspect-ratio: 16/9; }
.rr-quote-cta-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 1024px) { .rr-quote-cta-navy-3col { grid-template-columns: 1fr 1fr 1fr; gap: 40px; } }

/* ── Legal document layout (Privacy Policy) ── */
.rr-legal-layout { display: flex; flex-direction: column; gap: 40px; }
.rr-legal-toc { display: none; }
.rr-legal-toc-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--rr-muted); margin: 0 0 16px; }
.rr-legal-toc nav { display: flex; flex-direction: column; gap: 2px; }
.rr-legal-toc a { font-size: 14px; color: var(--rr-muted) !important; padding: 6px 0 6px 12px; border-left: 2px solid transparent; }
.rr-legal-toc a:hover { color: var(--rr-blue) !important; border-left-color: var(--rr-blue); }
.rr-legal-content { flex: 1; min-width: 0; }
.rr-legal-intro-box { background: var(--rr-blue-pale); border: 1px solid #cfe6f2; border-radius: 12px; padding: 24px; margin: 0 0 40px; }
.rr-legal-intro-box p { color: #3D3A52; font-size: 14px; line-height: 1.6; margin: 0; }
.rr-legal-section { margin-bottom: 40px; }
.rr-legal-section h2 { color: var(--rr-navy); font-size: 20px; font-weight: 900; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--rr-border); }
.rr-legal-section h3 { color: var(--rr-navy); font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.rr-legal-section p { color: var(--rr-ink); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.rr-legal-section ul { margin: 0 0 16px; padding-left: 20px; }
.rr-legal-section li { color: var(--rr-ink); font-size: 14px; line-height: 1.6; margin-bottom: 6px; }
.rr-legal-table-wrap { overflow-x: auto; margin: 0 0 16px; }
.rr-legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rr-legal-table th { text-align: left; padding: 12px; background: var(--rr-blue-pale); color: var(--rr-navy); font-weight: 700; border: 1px solid #cfe6f2; }
.rr-legal-table td { padding: 12px; color: var(--rr-ink); border: 1px solid var(--rr-border); }
.rr-legal-table tr:nth-child(even) td { background: var(--rr-canvas); }
.rr-legal-contact-box { background: var(--rr-blue-pale); border: 1px solid #cfe6f2; border-radius: 12px; padding: 24px; }
.rr-legal-contact-box p { margin: 0 0 4px; font-size: 14px; }
.rr-legal-contact-box p:first-child { color: var(--rr-navy); font-weight: 700; }
.rr-legal-back { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--rr-border); }
.rr-legal-back a { color: var(--rr-blue) !important; font-weight: 600; font-size: 14px; }
@media (min-width: 1024px) {
  .rr-legal-layout { flex-direction: row; gap: 48px; }
  .rr-legal-toc { display: block; width: 224px; flex-shrink: 0; }
}

/* ── About page: bio card, stats grid, values grid ── */
.rr-about-bio-card { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(35,33,77,.05); }
.rr-about-bio-bar { height: 8px; background: var(--rr-blue); }
.rr-about-bio-body { padding: 32px; display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.rr-about-bio-photo { width: 144px; height: 144px; border-radius: 999px; overflow: hidden; border: 4px solid var(--rr-border); box-shadow: 0 6px 16px rgba(35,33,77,.12); flex-shrink: 0; margin-inline: auto; }
.rr-about-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.rr-about-bio-body h3 { color: var(--rr-navy); font-size: 24px; font-weight: 900; margin: 0 0 4px; }
.rr-about-bio-role { color: var(--rr-blue); font-weight: 600; font-size: 14px; margin: 0 0 16px; }
.rr-about-bio-body p { color: var(--rr-muted); line-height: 1.6; margin: 0 0 16px; }
.rr-about-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.rr-about-badge { background: var(--rr-blue-pale); color: var(--rr-navy); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
@media (min-width: 768px) { .rr-about-bio-body { flex-direction: row; align-items: flex-start; } }

.rr-about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.rr-about-stat { background: var(--rr-blue-pale); border-radius: 12px; padding: 24px; text-align: center; }
.rr-about-stat-value { color: var(--rr-navy); font-weight: 900; font-size: 30px; line-height: 1; }
.rr-about-stat-label { color: var(--rr-muted); font-size: 14px; font-weight: 500; margin-top: 6px; }

.rr-value-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.rr-value-card { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; padding: 28px; }
.rr-value-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--rr-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--rr-blue-light); }
.rr-value-icon svg { width: 22px; height: 22px; }
.rr-value-card h3 { color: var(--rr-navy); font-weight: 900; font-size: 18px; margin: 0 0 8px; }
.rr-value-card p { color: var(--rr-muted); font-size: 14px; line-height: 1.6; margin: 0; }
@media (min-width: 768px) { .rr-value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .rr-value-grid { grid-template-columns: repeat(4, 1fr); } }

.rr-carrier-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.rr-carrier-list span { color: var(--rr-ink); font-weight: 600; font-size: 14px; }

/* ── Contact page ── */
.rr-contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.rr-contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--rr-navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--rr-blue-light); }
.rr-contact-item h3 { color: var(--rr-navy); font-weight: 700; font-size: 14px; margin: 0 0 4px; }
.rr-contact-item p, .rr-contact-item a { color: var(--rr-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.rr-contact-item a.rr-contact-link { display: block; color: var(--rr-blue) !important; font-weight: 600; }
.rr-contact-social { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--rr-border); }
.rr-contact-social h3 { color: var(--rr-navy); font-weight: 700; font-size: 14px; margin: 0 0 16px; }
.rr-contact-social-links { display: flex; gap: 16px; }
.rr-contact-social-links a { display: inline-flex; align-items: center; gap: 6px; color: var(--rr-muted) !important; font-weight: 600; font-size: 14px; }
.rr-contact-social-links a:hover { color: var(--rr-blue) !important; }
.rr-contact-book-box { margin-top: 32px; padding: 20px; background: var(--rr-navy); border-radius: 12px; }
.rr-contact-book-box p.rr-contact-book-head { color: #fff; font-weight: 700; font-size: 14px; margin: 0 0 8px; }
.rr-contact-book-box p.rr-contact-book-sub { color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.6; margin: 0 0 16px; }
.rr-contact-teal-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 6px; border: 2px solid #3DA6A6; color: #3DA6A6 !important; background: transparent; }
.rr-contact-teal-btn:hover { background: #3DA6A6; color: #fff !important; }
.rr-contact-map { margin-top: 32px; border-radius: 12px; overflow: hidden; border: 1px solid var(--rr-border); height: 224px; }
.rr-contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.rr-contact-form-card { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; padding: 12px 20px; box-shadow: 0 2px 12px rgba(35,33,77,.05); height: fit-content; }
.rr-contact-disclaimer { padding: 40px 0; background: #F5F7F8; }
.rr-contact-disclaimer p { color: #8A87A0; font-size: 12px; line-height: 1.6; text-align: center; max-width: 56rem; margin: 0 auto; }
@media (min-width: 1024px) { .rr-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; } }

/* ── City page: network cards, testimonial cards ── */
.rr-network-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.rr-network-card { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--rr-border); border-radius: 8px; padding: 14px; }
.rr-network-card:before { content: '\2713'; color: var(--rr-blue); font-weight: 900; flex-shrink: 0; }
.rr-network-card span { font-weight: 600; font-size: 14px; color: var(--rr-navy); }
@media (min-width: 640px) { .rr-network-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .rr-network-grid { grid-template-columns: repeat(3, 1fr); } }

.rr-testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.rr-testimonial-card { background: #fff; border: 1px solid var(--rr-border); border-radius: 12px; padding: 28px; box-shadow: 0 2px 12px rgba(35,33,77,.04); }
.rr-testimonial-stars { color: var(--rr-blue); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.rr-testimonial-quote { color: #514D6B; font-size: 14px; font-style: italic; line-height: 1.6; margin: 0 0 20px; }
.rr-testimonial-person { display: flex; align-items: center; gap: 12px; }
.rr-testimonial-avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--rr-navy); color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rr-testimonial-name { font-weight: 700; font-size: 14px; color: var(--rr-navy); }
.rr-testimonial-location { font-size: 12px; color: var(--rr-muted); }
@media (min-width: 768px) { .rr-testimonial-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Pre-footer teal CTA band (sitewide, appears on every page just before the footer) ── */
.rr-final-cta { background: var(--rr-blue); padding: 40px 0; }
.rr-final-cta-inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; justify-content: space-between; }
.rr-final-cta h2 { color: #fff; font-weight: 900; font-size: clamp(22px, 3vw, 28px); margin: 0 0 6px; }
.rr-final-cta p { color: rgba(255,255,255,.85); font-size: 15px; margin: 0; }
.rr-final-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rr-final-cta-phone { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--rr-navy) !important; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 6px; }
.rr-final-cta-quote { display: inline-flex; align-items: center; background: var(--rr-navy); color: #fff !important; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 6px; }
@media (min-width: 900px) { .rr-final-cta-inner { flex-direction: row; align-items: center; } }

/* ── Footer v2 ── */
.rr-site-footer { background: var(--rr-navy); padding: 56px 0 0; }
.rr-footer-grid-v2 { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
.rr-footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rr-footer-logo-badge { width: 44px; height: 44px; border-radius: 999px; background: var(--rr-blue); color: #fff; font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rr-footer-logo-text-main { color: #fff; font-weight: 800; font-size: 16px; letter-spacing: .02em; line-height: 1.2; }
.rr-footer-logo-text-sub { color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.rr-footer-tagline { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin: 0 0 20px; }
.rr-footer-social { display: flex; gap: 10px; }
.rr-footer-social a { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff !important; }
.rr-footer-social a:hover { background: var(--rr-blue) !important; }
.rr-footer-col h3 { color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.15); }
.rr-footer-col a { display: block; color: rgba(255,255,255,.65) !important; font-size: 14px; margin-bottom: 12px; }
.rr-footer-col a:hover { color: #fff !important; }
.rr-footer-contact-item { display: flex; gap: 10px; margin-bottom: 16px; }
.rr-footer-contact-item svg { color: var(--rr-blue-light); flex-shrink: 0; margin-top: 2px; }
.rr-footer-contact-item .rr-footer-contact-label { color: var(--rr-blue-light); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 2px; }
.rr-footer-contact-item div p, .rr-footer-contact-item div a { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }
.rr-footer-contact-item div a:hover { color: #fff; }
.rr-footer-contact-item .rr-footer-contact-note { color: rgba(255,255,255,.4); font-size: 12px; margin-left: 6px; }
.rr-footer-carriers { border-top: 1px solid rgba(255,255,255,.12); padding: 28px 0; text-align: center; }
.rr-footer-carriers p { color: rgba(255,255,255,.4); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 16px; }
.rr-footer-carriers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.rr-footer-carriers-list span { color: rgba(255,255,255,.55); font-size: 14px; font-weight: 600; }
.rr-footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0; }
.rr-footer-disclaimer p { color: rgba(255,255,255,.35); font-size: 12px; line-height: 1.6; text-align: center; max-width: 60rem; margin: 0 auto; }
.rr-footer-bottom-v2 { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.rr-footer-bottom-v2 span, .rr-footer-bottom-v2 a { color: rgba(255,255,255,.45) !important; font-size: 13px; }
.rr-footer-bottom-v2 a:hover { color: #fff !important; }
.rr-footer-bottom-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; }
@media (min-width: 700px) { .rr-footer-grid-v2 { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
@media (min-width: 900px) { .rr-footer-bottom-v2 { flex-direction: row; justify-content: space-between; } }
