/*
 Theme Name:   RateMyAgentNaija
 Theme URI:    https://ratemyagentnaija.com
 Description:  Child theme for RateMyAgentNaija — Digital Broadsheet editorial design system
 Author:       Smart Estate Tech
 Template:     generatepress
 Version:      2.0.0
 Text Domain:  rmanaija-child
*/

/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --rman-primary:           #006036;
  --rman-primary-container: #1a7a4a;
  --rman-secondary:         #825500;
  --rman-surface:           #faf9f5;
  --rman-surface-low:       #f5f4f0;
  --rman-surface-container: #efeeea;
  --rman-surface-high:      #e9e8e4;
  --rman-surface-highest:   #e3e2df;
  --rman-surface-white:     #ffffff;
  --rman-on-surface:        #1b1c1a;
  --rman-on-surface-variant:#3f4941;
  --rman-outline:           #6f7a70;
  --rman-outline-variant:   #bec9be;
  --rman-tertiary:          #903608;
  --rman-error:             #ba1a1a;

  /* Typography */
  --rman-font-display:  'DM Serif Display', serif;
  --rman-font-headline: 'Newsreader', serif;
  --rman-font-body:     'Plus Jakarta Sans', sans-serif;
  --rman-font-quote:    'Lora', serif;

  /* Shadows */
  --rman-shadow-card:      0 4px 24px rgba(27,28,26,0.04);
  --rman-shadow-elevated:  0 16px 32px rgba(27,28,26,0.05);
  --rman-shadow-editorial: 0 16px 24px -12px rgba(27,28,26,0.06);

  /* Legacy aliases (keep for back-compat with plugin CSS) */
  --rman-gold:    #825500;
  --rman-gold-dk: #6b4400;
  --rman-dark:    #006036;
  --rman-mid:     #1a7a4a;
  --rman-body:    #faf9f5;
  --rman-white:   #ffffff;
  --rman-border:  rgba(190,201,190,0.12);
  --rman-text:    #1b1c1a;
  --rman-muted:   #3f4941;
  --rman-radius:  8px;
  --rman-shadow:  var(--rman-shadow-card);
}

*, *::before, *::after { box-sizing: border-box; }
body {
  background: var(--rman-surface);
  color: var(--rman-on-surface);
  font-family: var(--rman-font-body);
  margin: 0;
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: var(--rman-primary); }

/* ════════════════════════════════════════
   HEADER — Editorial Masthead
════════════════════════════════════════ */
.rman-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--rman-surface);
  box-shadow: none;
  border-bottom: none;
}
.rman-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.rman-header-separator {
  height: 1px;
  background: var(--rman-surface-low);
  width: 100%;
}

/* Logo */
.rman-logo {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--rman-primary);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.rman-logo span { color: var(--rman-on-surface); }
.rman-logo:hover { color: var(--rman-primary); text-decoration: none; }

/* Nav */
.rman-nav { flex: 1; }
.rman-menu, .rman-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
}
.rman-menu li { position: relative; }
.rman-menu li a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--rman-on-surface-variant);
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color .18s;
  white-space: nowrap;
}
.rman-menu li a:hover,
.rman-menu .current-menu-item > a,
.rman-menu .current_page_item > a {
  color: var(--rman-on-surface);
}
/* Active nav gold dot */
.rman-menu .current-menu-item::after,
.rman-menu .current_page_item::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--rman-secondary);
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header CTA buttons */
.rman-header-actions { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }

.rman-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: #ffffff;
  color: var(--rman-primary) !important;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--rman-font-body);
  border-radius: 40px;
  border: 1.5px solid var(--rman-primary);
  text-decoration: none !important;
  transition: background .18s, color .18s, transform .1s;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.rman-btn-gold:hover {
  background: var(--rman-primary);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.rman-btn-gold.rman-btn-lg { padding: 13px 28px; font-size: 15px; }

.rman-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--rman-outline);
  border-radius: 8px;
  color: var(--rman-on-surface) !important;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--rman-font-body);
  text-decoration: none !important;
  transition: background .18s;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}
.rman-btn-outline:hover { background: var(--rman-surface-low); }
.rman-btn-outline.rman-btn-lg { padding: 13px 26px; font-size: 15px; }

.rman-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid var(--rman-outline);
  border-radius: 8px;
  color: var(--rman-on-surface) !important;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--rman-font-body);
  text-decoration: none !important;
  background: transparent;
  cursor: pointer;
  transition: background .18s;
}
.rman-btn-outline-dark:hover { background: var(--rman-surface-low); }

.rman-btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  color: rgba(255,255,255,0.9) !important;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--rman-font-body);
  text-decoration: none !important;
  transition: border-color .18s;
}
.rman-btn-outline-light:hover { border-color: #fff; color: #fff !important; }

.rman-btn-full { width: 100%; justify-content: center; }

/* Hamburger */
.rman-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  width: 36px;
  height: 36px;
}
.rman-hamburger span {
  display: block;
  height: 2px;
  background: var(--rman-on-surface);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Mobile menu drawer */
.rman-mobile-menu {
  display: none;
  background: var(--rman-surface-low);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--rman-surface-container);
}
.rman-mobile-menu.open { display: block; }
.rman-mobile-nav-list { flex-direction: column; gap: 4px; margin-bottom: 16px; }
.rman-mobile-nav-list li a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--rman-on-surface-variant);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.rman-mobile-nav-list li a:hover { background: var(--rman-surface-container); color: var(--rman-on-surface); }
.rman-mobile-actions { display: flex; flex-direction: column; gap: 10px; }

/* Page wrapper */
#rman-page { min-height: 60vh; }

/* ════════════════════════════════════════
   FOOTER — Minimal Editorial
════════════════════════════════════════ */
.rman-footer {
  background: var(--rman-surface);
  color: var(--rman-on-surface-variant);
  padding: 48px 24px 28px;
  margin-top: 0;
  border-top: 1px solid rgba(190,201,190,0.12);
}
.rman-footer-inner { max-width: 1100px; margin: 0 auto; }

.rman-footer-brand { margin-bottom: 36px; }
.rman-footer-brand p {
  font-size: 13px;
  max-width: 340px;
  line-height: 1.7;
  margin: 10px 0 0;
  color: var(--rman-on-surface-variant);
}

.rman-footer-logo {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--rman-on-surface-variant);
  text-decoration: none;
}
.rman-footer-logo span { color: var(--rman-on-surface); }
.rman-footer-logo:hover { color: var(--rman-on-surface); }

.rman-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(190,201,190,0.12);
  margin-bottom: 24px;
}

.rman-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rman-footer-col h4 {
  color: var(--rman-on-surface);
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
}
.rman-footer-col a {
  display: block;
  color: var(--rman-on-surface-variant);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  padding: 5px 0;
  transition: color .18s;
}
.rman-footer-col a:hover { color: var(--rman-on-surface); }

.rman-footer-bottom {
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
}
.rman-footer-bottom p { margin: 6px 0; }
.rman-footer-lasrera { font-size: 10px; opacity: .7; }

/* ════════════════════════════════════════
   HOMEPAGE
════════════════════════════════════════ */

/* Hero — warm off-white canvas, NOT dark green */
.rman-hero {
  background: var(--rman-surface);
  padding: 0 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Split layout hero */
.rman-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}
.rman-hero-content {
  padding: 80px 48px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.rman-hero-content .rman-hero-search { margin: 0 0 36px; max-width: 100%; }
.rman-hero-content .rman-hero-stats  { justify-content: flex-start; }

/* Photo panel */
.rman-hero-photo {
  position: relative;
  overflow: hidden;
}
.rman-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Floating rating badge on photo */
.rman-hero-photo-badge {
  position: absolute;
  bottom: 28px;
  left: 24px;
  background: var(--rman-surface-white);
  border-radius: 8px;
  box-shadow: var(--rman-shadow-elevated);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}
.rman-hero-photo-badge-num {
  font-family: var(--rman-font-display);
  font-size: 1.8rem;
  color: var(--rman-on-surface);
  line-height: 1;
}
.rman-hero-photo-badge-star {
  font-size: 12px;
  color: var(--rman-secondary);
  letter-spacing: 1px;
}
.rman-hero-photo-badge-label {
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rman-on-surface-variant);
}

/* Legacy: centered hero (non-split pages) */
.rman-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }

/* Eyebrow label */
.rman-hero-badge {
  display: inline-block;
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rman-secondary);
  margin-bottom: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.rman-hero h1,
.rman-hero-content h1 {
  font-family: var(--rman-font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--rman-on-surface);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.rman-hero h1 span,
.rman-hero-content h1 span { color: var(--rman-primary); }
.rman-hero > .rman-hero-inner > p,
.rman-hero-content > p {
  font-size: 17px;
  color: var(--rman-on-surface-variant);
  margin: 0 0 40px;
  line-height: 1.7;
}

/* Search bar — white card with ambient shadow */
.rman-hero-search {
  display: flex;
  gap: 0;
  max-width: 580px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--rman-shadow-card);
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
}
.rman-hero-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--rman-font-body);
  border: none;
  outline: none;
  color: var(--rman-on-surface);
  background: transparent;
  border-radius: 0;
}
.rman-hero-input::placeholder { color: var(--rman-outline); }
.rman-hero-search .rman-btn-gold {
  border-radius: 0 40px 40px 0;
  padding: 16px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* Stats strip */
.rman-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rman-stat { text-align: center; }
.rman-stat strong {
  display: block;
  font-family: var(--rman-font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--rman-primary);
  line-height: 1;
}
.rman-stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rman-on-surface-variant);
  font-weight: 700;
}
.rman-stat-divider { width: 1px; height: 36px; background: var(--rman-outline-variant); }

/* Shared section helpers */
.rman-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Section eyebrow pattern */
.rman-section-eyebrow {
  display: block;
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rman-secondary);
  margin-bottom: 8px;
  text-align: center;
}

.rman-section-title {
  font-family: var(--rman-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--rman-on-surface);
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -0.01em;
}
.rman-section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--rman-on-surface-variant);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Trust strip */
.rman-trust { padding: 72px 24px; background: var(--rman-surface-low); }
.rman-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.rman-trust-card {
  padding: 28px 24px;
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  box-shadow: var(--rman-shadow-card);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.rman-trust-card:hover { box-shadow: var(--rman-shadow-elevated); transform: translateY(-4px); }
.rman-trust-icon { font-size: 32px; margin-bottom: 14px; line-height: 1; }
.rman-trust-card h3 {
  font-family: var(--rman-font-headline);
  font-size: 17px;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 10px;
}
.rman-trust-card p { font-size: 14px; color: var(--rman-on-surface-variant); margin: 0; line-height: 1.6; }

/* How it works */
.rman-how { padding: 72px 24px; background: var(--rman-surface); }
.rman-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.rman-step {
  flex: 1;
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  box-shadow: var(--rman-shadow-card);
  padding: 28px 24px;
  text-align: center;
}
.rman-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #1a7a4a 0%, #006036 100%);
  color: #fff;
  border-radius: 50%;
  font-family: var(--rman-font-display);
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.rman-step h3 {
  font-family: var(--rman-font-headline);
  font-size: 17px;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 8px;
}
.rman-step p  { font-size: 14px; color: var(--rman-on-surface-variant); margin: 0; }
.rman-step-arrow { font-size: 24px; color: var(--rman-outline-variant); flex-shrink: 0; }

/* Agent CTA band */
.rman-agent-cta {
  background: var(--rman-primary);
  padding: 64px 24px;
  border-top: none;
}
.rman-agent-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rman-agent-cta h2 {
  font-family: var(--rman-font-display);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0 0 10px;
}
.rman-agent-cta p  { color: rgba(255,255,255,.75); font-size: 15px; max-width: 480px; margin: 0; }
.rman-agent-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* Featured sections */
.rman-featured { padding: 72px 24px; background: var(--rman-surface-white); }
.rman-featured-week { background: var(--rman-surface-low); }
.rman-featured-unclaimed { background: var(--rman-surface); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.rmanaija-page-hero {
  background: var(--rman-surface);
  padding: 60px 24px;
  text-align: center;
  margin-bottom: 0;
  border-bottom: 1px solid var(--rman-surface-low);
  position: relative;
  overflow: hidden;
}
.rmanaija-page-hero h1 {
  font-family: var(--rman-font-display);
  color: var(--rman-on-surface);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.rmanaija-page-hero p { color: var(--rman-on-surface-variant); font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Hero with background image */
.rman-page-hero-img {
  background-size: cover;
  background-position: center;
  padding: 0;
  border-bottom: none;
}
.rman-page-hero-overlay {
  padding: 72px 24px;
  text-align: center;
  background: linear-gradient(
    105deg,
    rgba(250,249,245,0.97) 0%,
    rgba(250,249,245,0.92) 45%,
    rgba(250,249,245,0.72) 70%,
    rgba(250,249,245,0.40) 100%
  );
}
/* Blog archive hero with image */
.rman-blog-archive-hero.rman-page-hero-img .rman-page-hero-overlay {
  text-align: center;
  padding: 72px 24px;
}

/* ════════════════════════════════════════
   VERIFIED BADGE
════════════════════════════════════════ */
.rmanaija-lasrera-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rman-primary); color: #fff;
  font-size: 11px; font-weight: 700;
  font-family: var(--rman-font-body);
  padding: 4px 10px; border-radius: 4px;
}

/* ════════════════════════════════════════
   BLOG SECTION
════════════════════════════════════════ */
.rman-blog { padding: 72px 24px; background: var(--rman-surface-white); }
.rman-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.rman-blog-card {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  box-shadow: var(--rman-shadow-card);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.rman-blog-card:hover { box-shadow: var(--rman-shadow-elevated); transform: translateY(-4px); }
.rman-blog-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.rman-blog-card-img-placeholder {
  width: 100%; height: 180px;
  background: var(--rman-surface-low);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.rman-blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.rman-blog-card-cat {
  display: inline-block;
  font-family: var(--rman-font-body);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rman-secondary); margin-bottom: 8px;
}
.rman-blog-card-title {
  font-family: var(--rman-font-headline);
  font-size: 16px; font-weight: 700; color: var(--rman-on-surface);
  line-height: 1.4; margin: 0 0 8px;
}
.rman-blog-card-excerpt { font-size: 14px; color: var(--rman-on-surface-variant); line-height: 1.6; margin: 0 0 12px; }
.rman-blog-card-meta { font-size: 12px; color: var(--rman-outline); }
.rman-blog-read-more { color: var(--rman-primary); font-weight: 600; font-size: 13px; }

/* ════════════════════════════════════════
   REVIEW CTA BUTTON (header)
════════════════════════════════════════ */
.rman-btn-review {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--rman-outline-variant);
  border-radius: 8px;
  color: var(--rman-on-surface-variant) !important;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--rman-font-body);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s;
}
.rman-btn-review:hover {
  background: var(--rman-surface-low);
  color: var(--rman-on-surface) !important;
  border-color: var(--rman-outline);
}

/* ════════════════════════════════════════
   REVIEW CTA STRIP (every page)
════════════════════════════════════════ */
.rman-review-cta-strip {
  background: var(--rman-surface-low);
  padding: 48px 24px;
  border-top: 1px solid rgba(190,201,190,0.12);
}
.rman-review-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rman-review-cta-inner h3 {
  font-family: var(--rman-font-headline);
  color: var(--rman-on-surface);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.rman-review-cta-inner p  { color: var(--rman-on-surface-variant); font-size: 15px; margin: 0; max-width: 460px; }

/* ════════════════════════════════════════
   DARK OUTLINE BUTTON
════════════════════════════════════════ */
.rmanaija-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid var(--rman-outline);
  border-radius: 8px;
  color: var(--rman-on-surface) !important;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--rman-font-body);
  text-decoration: none !important;
  transition: background .18s;
  background: transparent;
}
.rmanaija-btn-outline-dark:hover { background: var(--rman-surface-low); }

/* ════════════════════════════════════════
   WORDPRESS ADMIN BAR OFFSET
════════════════════════════════════════ */
.admin-bar .rman-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .rman-header { top: 46px; }
}

/* ════════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════════ */
.rman-legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--rman-on-surface-variant);
}
.rman-legal-wrap h2 {
  font-family: var(--rman-font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(190,201,190,0.12);
}
.rman-legal-wrap h3 {
  font-family: var(--rman-font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 24px 0 8px;
}
.rman-legal-wrap p  { margin: 0 0 16px; }
.rman-legal-wrap ul,
.rman-legal-wrap ol { margin: 0 0 16px; padding-left: 24px; }
.rman-legal-wrap li { margin-bottom: 8px; }
.rman-legal-wrap a  { color: var(--rman-primary); }
.rman-legal-wrap table.rman-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.rman-legal-wrap .rman-table th { background: var(--rman-surface-low); padding: 10px 14px; text-align: left; font-weight: 700; border: 1px solid rgba(190,201,190,0.2); }
.rman-legal-wrap .rman-table td { padding: 10px 14px; border: 1px solid rgba(190,201,190,0.2); }

/* Data rights grid */
.rman-data-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0 48px;
}
.rman-right-card {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--rman-shadow-card);
}
.rman-right-icon { font-size: 32px; }
.rman-right-card h3 {
  font-family: var(--rman-font-headline);
  font-size: 15px; font-weight: 700; color: var(--rman-on-surface); margin: 0;
}
.rman-right-card p  { font-size: 13px; color: var(--rman-on-surface-variant); margin: 0; flex: 1; }
.rman-right-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--rman-primary);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  margin-top: 4px;
  transition: opacity .18s;
}
.rman-right-btn:hover { opacity: .8; }

/* ════════════════════════════════════════
   FIND AGENT STRIP (footer CTA)
════════════════════════════════════════ */
.rman-find-agent-strip {
  background: var(--rman-surface-low);
  border-top: 1px solid rgba(190,201,190,0.12);
  padding: 28px 24px;
}
.rman-find-agent-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rman-find-agent-strip-icon { font-size: 32px; flex-shrink: 0; }
.rman-find-agent-strip-inner > div { flex: 1; }
.rman-find-agent-strip-inner strong { display: block; color: var(--rman-on-surface); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.rman-find-agent-strip-inner span  { color: var(--rman-on-surface-variant); font-size: 14px; }

/* ════════════════════════════════════════
   BLOG ARCHIVE PAGE
════════════════════════════════════════ */
.rman-blog-archive-hero {
  background: var(--rman-surface);
  text-align: center;
  border-bottom: 1px solid var(--rman-surface-low);
  position: relative;
  overflow: hidden;
}
.rman-blog-archive-hero h1 {
  font-family: var(--rman-font-display);
  color: var(--rman-on-surface);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 12px;
}
.rman-blog-archive-hero p {
  color: var(--rman-on-surface-variant);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.rman-blog-archive-page {
  padding: 56px 0 80px;
  background: var(--rman-surface);
}

.rman-blog-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.rman-blog-cat-tab {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--rman-outline-variant);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--rman-font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rman-on-surface-variant);
  text-decoration: none;
  background: var(--rman-surface-white);
  transition: all .18s;
}
.rman-blog-cat-tab:hover { border-color: var(--rman-outline); color: var(--rman-on-surface); }
.rman-blog-cat-tab.active { background: var(--rman-primary); border-color: var(--rman-primary); color: #fff; }

.rman-blog-grid-lg { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* Featured hero card */
.rman-blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  box-shadow: var(--rman-shadow-card);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 0;
}
.rman-blog-featured-card:hover { box-shadow: var(--rman-shadow-elevated); transform: translateY(-4px); }
.rman-blog-featured-img { overflow: hidden; min-height: 320px; }
.rman-blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rman-blog-featured-card:hover .rman-blog-featured-img img { transform: scale(1.04); }
.rman-blog-featured-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  background: var(--rman-surface-low);
  display: flex; align-items: center; justify-content: center; font-size: 56px;
}
.rman-blog-featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.rman-blog-featured-title {
  font-family: var(--rman-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--rman-on-surface);
  line-height: 1.3;
  margin: 8px 0 16px;
}
.rman-blog-featured-excerpt { font-size: 15px; color: var(--rman-on-surface-variant); line-height: 1.7; margin: 0 0 20px; }
.rman-blog-featured-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--rman-outline); flex-wrap: wrap;
}

/* Blog empty state */
.rman-blog-empty {
  text-align: center;
  padding: 80px 24px;
}
.rman-blog-empty h3 { font-family: var(--rman-font-headline); font-size: 22px; color: var(--rman-on-surface); margin: 0 0 8px; }
.rman-blog-empty p  { color: var(--rman-on-surface-variant); }

/* Pagination */
.rman-blog-pagination, .wp-block-query-pagination,
nav.navigation.pagination .nav-links {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; flex-wrap: wrap; margin-top: 48px;
}
.rman-blog-pagination .page-numbers,
nav.navigation.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--rman-outline-variant);
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--rman-on-surface);
  background: var(--rman-surface-white);
  text-decoration: none;
  transition: all .18s;
}
.rman-blog-pagination .page-numbers:hover,
nav.navigation.pagination .page-numbers:hover { background: var(--rman-surface-low); border-color: var(--rman-outline); }
.rman-blog-pagination .page-numbers.current,
nav.navigation.pagination .page-numbers.current { background: var(--rman-primary); border-color: var(--rman-primary); color: #fff; }
.rman-blog-pagination .page-numbers.prev,
.rman-blog-pagination .page-numbers.next,
nav.navigation.pagination .page-numbers.prev,
nav.navigation.pagination .page-numbers.next { width: auto; padding: 0 16px; }

/* ════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════ */
.rman-reading-progress-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: rgba(27,28,26,.06); z-index: 9999;
}
.rman-reading-progress-bar {
  height: 100%; width: 0;
  background: var(--rman-primary);
  transition: width .1s linear;
}

.rman-single-page { background: var(--rman-surface); }
.rman-single-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.rman-article {
  background: var(--rman-surface-white);
  border-radius: 8px;
  border: 1px solid rgba(190,201,190,0.12);
  box-shadow: var(--rman-shadow-card);
  overflow: hidden;
  min-width: 0;
}
.rman-article-header { padding: 40px 48px 0; }
.rman-article-cat {
  display: inline-block;
  font-family: var(--rman-font-body);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rman-secondary);
  text-decoration: none;
  margin-bottom: 12px;
}
.rman-article-title {
  font-family: var(--rman-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--rman-on-surface);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.rman-article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(190,201,190,0.12);
  flex-wrap: wrap;
}
.rman-article-meta-author { display: flex; align-items: center; gap: 12px; }
.rman-article-avatar {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--rman-surface-container);
}
.rman-article-author-name { display: block; font-size: 14px; font-weight: 700; color: var(--rman-on-surface); }
.rman-article-meta-details { display: block; font-size: 12px; color: var(--rman-outline); margin-top: 2px; }
.rman-sep { margin: 0 4px; }

.rman-article-share-row { display: flex; gap: 8px; }
.rman-share-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rman-surface-low);
  border: none; cursor: pointer;
  font-size: 16px;
  transition: background .15s;
}
.rman-share-pill:hover { background: var(--rman-surface-container); }

.rman-article-hero-img { overflow: hidden; }
.rman-article-hero-img img {
  width: 100%; max-height: 480px; object-fit: cover;
  display: block;
}

.rman-toc-mobile { margin: 24px 48px 0; }
.rman-toc-toggle-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--rman-surface-low);
  border: 1px solid rgba(190,201,190,0.2);
  border-radius: 8px;
  font-size: 14px; font-weight: 700; color: var(--rman-on-surface);
  cursor: pointer;
  font-family: var(--rman-font-body);
}
.rman-toc-chevron { font-size: 12px; }
.rman-toc-mobile-nav {
  display: none;
  background: var(--rman-surface-low);
  border: 1px solid rgba(190,201,190,0.2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 8px 16px 16px;
}
.rman-toc-mobile-nav ol { margin: 0; padding-left: 20px; }
.rman-toc-mobile-nav a { font-size: 14px; color: var(--rman-on-surface); text-decoration: none; line-height: 2; }
.rman-toc-mobile-nav a:hover { color: var(--rman-primary); }
.rman-toc-item.rman-toc-h3 { margin-left: 16px; list-style-type: circle; }

.rman-article-body {
  padding: 32px 48px 0;
  font-size: 17px;
  line-height: 1.85;
  color: var(--rman-on-surface-variant);
}
.rman-article-body h2 {
  font-family: var(--rman-font-headline);
  font-size: 1.6rem; font-weight: 700; color: var(--rman-on-surface);
  margin: 48px 0 16px; padding-top: 8px;
  border-top: 1px solid rgba(190,201,190,0.12);
  scroll-margin-top: 90px;
}
.rman-article-body h3 {
  font-family: var(--rman-font-headline);
  font-size: 1.25rem; font-weight: 700; color: var(--rman-on-surface);
  margin: 32px 0 12px;
  scroll-margin-top: 90px;
}
.rman-article-body p { margin: 0 0 20px; }
.rman-article-body ul,
.rman-article-body ol { margin: 0 0 20px; padding-left: 28px; }
.rman-article-body li { margin-bottom: 8px; }
.rman-article-body a { color: var(--rman-primary); }
.rman-article-body blockquote {
  font-family: var(--rman-font-quote);
  font-style: italic;
  border-left: 3px solid var(--rman-secondary);
  background: var(--rman-surface-low);
  margin: 28px 0;
  padding: 16px 24px;
  border-radius: 0 8px 8px 0;
  color: var(--rman-on-surface-variant);
}
.rman-article-body img { border-radius: 8px; margin: 8px 0 20px; }
.rman-article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.rman-article-body th { background: var(--rman-primary); color: #fff; padding: 10px 14px; text-align: left; }
.rman-article-body td { padding: 10px 14px; border: 1px solid rgba(190,201,190,0.2); }
.rman-article-body tr:nth-child(even) td { background: var(--rman-surface-low); }
.rman-article-body code { background: var(--rman-surface-low); padding: 2px 6px; border-radius: 4px; font-size: 14px; }
.rman-article-body pre { background: #1e1e1e; padding: 20px; border-radius: 8px; overflow-x: auto; }
.rman-article-body pre code { background: transparent; color: #a3e635; font-size: 14px; }

.rman-inline-cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin: 0 48px 32px;
  background: var(--rman-primary);
  border-radius: 8px;
  padding: 20px 24px;
}
.rman-inline-cta-icon { font-size: 32px; flex-shrink: 0; }
.rman-inline-cta-text { flex: 1; }
.rman-inline-cta-text strong { display: block; color: #fff; font-size: 16px; margin-bottom: 4px; }
.rman-inline-cta-text span  { color: rgba(255,255,255,.7); font-size: 14px; }

.rman-article-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 48px 24px; }
.rman-article-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--rman-outline-variant);
  border-radius: 40px;
  font-size: 12px; color: var(--rman-on-surface-variant);
  text-decoration: none;
  transition: all .15s;
}
.rman-article-tag:hover { border-color: var(--rman-outline); color: var(--rman-on-surface); }

.rman-article-share-footer {
  padding: 24px 48px;
  border-top: 1px solid rgba(190,201,190,0.12);
}
.rman-article-share-footer p { font-size: 15px; font-weight: 600; color: var(--rman-on-surface); margin: 0 0 12px; }
.rman-article-share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.rman-share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  transition: opacity .15s;
}
.rman-share-btn:hover { opacity: .85; }
.rman-share-whatsapp { background: #25d366; color: #fff; }
.rman-share-email    { background: #2563eb; color: #fff; }
.rman-share-copy, .rman-share-cp { background: var(--rman-surface-container); color: var(--rman-on-surface); }

.rman-author-box {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 48px 40px;
  border-top: 1px solid rgba(190,201,190,0.12);
}
.rman-author-box-avatar {
  width: 72px; height: 72px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--rman-surface-container);
}
.rman-author-box-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rman-outline); margin-bottom: 4px; }
.rman-author-box-name  {
  font-family: var(--rman-font-headline);
  font-size: 17px; font-weight: 700; color: var(--rman-on-surface); margin-bottom: 8px;
}
.rman-author-box-bio   { font-size: 14px; color: var(--rman-on-surface-variant); line-height: 1.6; margin: 0; }

/* Sidebar */
.rman-article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.rman-toc-sticky {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: var(--rman-shadow-card);
}
.rman-toc-sticky-title {
  font-family: var(--rman-font-body);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rman-on-surface); margin-bottom: 14px;
}
.rman-toc-list { margin: 0; padding-left: 18px; }
.rman-toc-link {
  font-size: 13px;
  line-height: 1.6;
  color: var(--rman-on-surface-variant);
  text-decoration: none;
  display: block;
  padding: 3px 0 3px 8px;
  transition: color .15s;
  border-left: 2px solid transparent;
  margin-left: -10px;
}
.rman-toc-link:hover    { color: var(--rman-on-surface); }
.rman-toc-link.rman-toc-active { color: var(--rman-on-surface); border-left-color: var(--rman-secondary); font-weight: 700; }
.rman-toc-h3 { list-style-type: none; padding-left: 12px; }

.rman-sidebar-agent-cta {
  background: var(--rman-primary);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.rman-sidebar-cta-icon  { font-size: 36px; margin-bottom: 12px; }
.rman-sidebar-agent-cta strong { display: block; color: #fff; font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.rman-sidebar-agent-cta p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; }
.rman-sidebar-cta-solo { margin-top: 0; }

.rman-related-section { background: var(--rman-surface-low); padding: 72px 24px; }

/* ════════════════════════════════════════
   DISPUTE PAGE
════════════════════════════════════════ */
.rman-dispute-page { padding: 64px 0 80px; }
.rman-dispute-section { max-width: 900px; margin: 0 auto 56px; }
.rman-dispute-section > h2 {
  font-family: var(--rman-font-headline);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(190,201,190,0.12);
}
.rman-dispute-section > p {
  font-size: 16px;
  color: var(--rman-on-surface-variant);
  line-height: 1.75;
  margin: 0 0 24px;
}

.rman-dispute-criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.rman-dispute-criterion {
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(190,201,190,0.2);
}
.rman-criterion-valid   { background: rgba(0,96,54,0.04); border-color: rgba(0,96,54,0.15); }
.rman-criterion-invalid { background: rgba(186,26,26,0.04); border-color: rgba(186,26,26,0.15); }
.rman-criterion-icon { font-size: 28px; margin-bottom: 10px; }
.rman-dispute-criterion h3 {
  font-family: var(--rman-font-headline);
  font-size: 16px; font-weight: 700; margin: 0 0 12px; color: var(--rman-on-surface);
}
.rman-dispute-criterion ul { margin: 0; padding-left: 20px; }
.rman-dispute-criterion li { font-size: 14px; color: var(--rman-on-surface-variant); margin-bottom: 8px; line-height: 1.5; }

.rman-dispute-note {
  background: var(--rman-surface-low);
  border: 1px solid rgba(190,201,190,0.2);
  border-left: 3px solid var(--rman-secondary);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--rman-on-surface-variant);
  margin-top: 20px;
  line-height: 1.6;
}

.rman-dispute-steps { display: flex; flex-direction: column; gap: 0; }
.rman-dispute-step {
  display: flex;
  gap: 20px;
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  box-shadow: var(--rman-shadow-card);
  padding: 24px;
}
.rman-dispute-step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(180deg, #1a7a4a 0%, #006036 100%);
  color: #fff;
  border-radius: 50%;
  font-family: var(--rman-font-display);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.rman-dispute-step-body h3 {
  font-family: var(--rman-font-headline);
  font-size: 17px; font-weight: 700; color: var(--rman-on-surface); margin: 0 0 8px;
}
.rman-dispute-step-body p  { font-size: 15px; color: var(--rman-on-surface-variant); line-height: 1.7; margin: 0 0 10px; }
.rman-dispute-step-body p:last-child { margin-bottom: 0; }
.rman-dispute-connector { text-align: center; font-size: 20px; color: var(--rman-outline-variant); padding: 6px 0; }

.rman-dispute-outcomes { margin: 12px 0 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rman-dispute-outcomes li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--rman-on-surface-variant); }
.rman-outcome-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; flex-shrink: 0;
}
.rman-outcome-removed { background: rgba(186,26,26,0.1); color: var(--rman-error); }
.rman-outcome-edited  { background: rgba(144,54,8,0.1); color: var(--rman-tertiary); }
.rman-outcome-upheld  { background: rgba(0,96,54,0.1); color: var(--rman-primary); }

.rman-dispute-alt {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  box-shadow: var(--rman-shadow-card);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 0;
}
.rman-dispute-alt > h2 { display: none; }
.rman-dispute-alt-inner {
  display: flex; gap: 24px; align-items: flex-start; padding: 32px;
}
.rman-dispute-alt-icon { font-size: 48px; flex-shrink: 0; margin-top: 4px; }
.rman-dispute-alt-inner h2 {
  font-family: var(--rman-font-headline);
  font-size: 20px; font-weight: 700; color: var(--rman-on-surface); margin: 0 0 12px;
}
.rman-dispute-alt-inner p { font-size: 15px; color: var(--rman-on-surface-variant); line-height: 1.7; margin: 0 0 12px; }

.rman-dispute-faq { display: flex; flex-direction: column; gap: 8px; }
.rman-faq-item {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.rman-faq-item summary {
  padding: 16px 20px;
  font-size: 15px; font-weight: 700; color: var(--rman-on-surface);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--rman-font-body);
}
.rman-faq-item summary::-webkit-details-marker { display: none; }
.rman-faq-item summary::after { content: '+'; font-size: 20px; color: var(--rman-secondary); flex-shrink: 0; }
.rman-faq-item[open] summary::after { content: '−'; }
.rman-faq-item p {
  padding: 0 20px 16px;
  font-size: 14px; color: var(--rman-on-surface-variant); line-height: 1.7; margin: 0;
}
.rman-faq-item a { color: var(--rman-primary); }

.rman-dispute-cta {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  background: var(--rman-primary);
  border-radius: 8px;
  padding: 48px 32px;
}
.rman-dispute-cta h2 {
  font-family: var(--rman-font-display);
  font-size: 1.8rem; font-weight: 400; color: #fff; margin: 0 0 10px;
}
.rman-dispute-cta p  { color: rgba(255,255,255,.75); font-size: 16px; margin: 0 0 28px; }
.rman-dispute-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION
════════════════════════════════════════ */
.rman-mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(250,249,245,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245,244,240,0.5);
  box-shadow: 0 -4px 24px rgba(27,28,26,0.04);
  padding: 8px 0 env(safe-area-inset-bottom);
  justify-content: space-around; align-items: center;
}
.rman-mobile-bottom-nav a {
  display: flex; flex-direction: column; align-items: center;
  color: var(--rman-on-surface-variant); font-size: 10px;
  font-family: var(--rman-font-body);
  text-transform: uppercase; letter-spacing: 0.08em;
  gap: 2px; padding: 4px 12px;
  text-decoration: none;
  transition: all 0.15s;
}
.rman-mobile-bottom-nav a.active { color: var(--rman-primary); }
.rman-mobile-bottom-nav .material-symbols-outlined { font-size: 22px; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .rman-dash-page { grid-template-columns: 1fr; }
  .rman-dash-sidebar {
    flex-direction: column; min-height: auto;
    padding: 0; gap: 0; align-items: stretch;
  }
  .rman-dash-identity {
    flex-direction: row; align-items: center; gap: 12px;
    padding: 12px 16px;
  }
  .rman-dash-id-text { text-align: left; }
  .rman-dash-avatar { width: 44px; height: 44px; font-size: 18px; margin: 0; flex-shrink: 0; }
  .rman-dash-user-name { text-align: left; font-size: 14px; margin: 0; }
  .rman-dash-role-badge { text-align: left; margin: 0; font-size: 10px; }
  .rman-dash-sidebar-stats { display: none; }
  .rman-dash-nav {
    flex-direction: row; flex-wrap: nowrap; align-items: center;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    gap: 2px; padding: 8px 10px;
    scrollbar-width: none;
  }
  .rman-dash-nav::-webkit-scrollbar { display: none; }
  .rman-dash-link, .rman-dash-nav-item {
    flex-shrink: 0; white-space: nowrap;
    padding: 7px 12px; font-size: 13px;
    border-radius: 6px;
  }
  .rman-nav-icon { font-size: 15px; }
  .rman-dash-sidebar-footer { display: none; }
  .rman-dash-main { padding: 24px 16px; }
  .rman-form-grid { grid-template-columns: 1fr; }
  .rman-form-row  { grid-template-columns: 1fr; }
  .rman-find-layout { grid-template-columns: 1fr; }
  .rman-find-sidebar { position: static; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .rman-nav, .rman-header-actions { display: none; }
  .rman-hamburger { display: flex; }
  .rman-mobile-bottom-nav { display: flex; }
  body { padding-bottom: 60px; }
  .rman-review-cta-inner { flex-direction: column; text-align: center; }

  /* Split hero → stacked on mobile */
  .rman-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .rman-hero-content {
    padding: 52px 20px 40px;
    text-align: center;
    order: 1;
  }
  .rman-hero-content .rman-hero-stats { justify-content: center; }
  .rman-hero-photo { height: 260px; order: 0; }
  .rman-hero-photo-badge { bottom: 16px; left: 16px; padding: 10px 14px; }

  .rman-hero { padding: 0; }
  .rman-hero h1,
  .rman-hero-content h1 { font-size: 2.2rem; }
  .rman-hero > .rman-hero-inner > p,
  .rman-hero-content > p { font-size: 15px; margin-bottom: 28px; }
  .rman-hero-search { flex-direction: column; border-radius: 8px; overflow: visible; gap: 8px; background: transparent; border: none; box-shadow: none; max-width: 100%; }
  .rman-hero-input, .rman-hero-search .rman-btn-gold { border-radius: 8px !important; width: 100%; justify-content: center; }
  .rman-hero-input { border: 1px solid rgba(190,201,190,0.2); background: var(--rman-surface-white); box-shadow: var(--rman-shadow-card); }
  .rman-hero-stats { gap: 16px; }
  .rman-stat strong { font-size: 2rem; }

  /* Inner page hero overlay — full overlay on mobile */
  .rman-page-hero-overlay {
    background: linear-gradient(180deg, rgba(250,249,245,0.97) 0%, rgba(250,249,245,0.88) 100%);
    padding: 52px 20px;
  }
  .rmanaija-page-hero { padding: 0; }
  .rman-blog-archive-hero { padding: 0; }

  .rman-trust { padding: 48px 20px; }
  .rman-featured { padding: 48px 20px; }
  .rman-how { padding: 48px 20px; }
  .rman-blog { padding: 48px 20px; }
  .rman-blog-grid,
  .rman-blog-grid-lg { grid-template-columns: 1fr; gap: 16px; }
  .rman-steps { flex-direction: column; }
  .rman-step-arrow { transform: rotate(90deg); font-size: 20px; }
  .rman-section-title-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rman-section-sub { font-size: 14px; margin-bottom: 32px; }

  .rman-agent-cta { padding: 48px 20px; }
  .rman-agent-cta-inner { flex-direction: column; text-align: center; }
  .rman-agent-cta-actions { justify-content: center; flex-direction: column; align-items: center; }
  .rman-btn-lg { width: 100%; justify-content: center; text-align: center; }

  .rman-footer { padding: 40px 20px 24px; }
  .rman-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .rman-footer-links { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .rmanaija-results-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rmanaija-card-photo img,
  .rman-unclaimed-photo { height: 150px; }
  .rman-unclaimed-avatar { height: 150px; line-height: 150px; font-size: 48px; }
  .rmanaija-card-body { padding: 12px; }
  .rmanaija-card-name { font-size: 14px; }
  .rmanaija-card-agency, .rmanaija-card-location { font-size: 12px; margin-bottom: 6px; }
  .rmanaija-card-rating { font-size: 12px; }
  .rman-agent-grid { grid-template-columns: 1fr; }

  .rman-find-layout { grid-template-columns: 1fr; }
  .rman-find-sidebar { position: static; }

  .rman-find-search-wrap { padding: 16px; }
  .rmanaija-search-form { padding: 14px; }
  .rmanaija-search-row { gap: 8px; justify-content: flex-start; }
  .rmanaija-input, .rmanaija-select { padding: 9px 12px; font-size: 14px; flex: 1 1 100%; }
  .rmanaija-search-row .rmanaija-btn { width: 100%; justify-content: center; }
  .rman-not-here-strip { padding: 10px 14px; gap: 10px; flex-direction: column; align-items: flex-start; overflow: hidden; }
  .rman-not-here-btn { font-size: 13px; padding: 10px 14px; white-space: normal; width: 100%; box-sizing: border-box; text-align: center; }

  .rman-rankings-sidebar { margin-top: 24px; }
  .rman-ranking-item { padding: 10px 14px; gap: 10px; }
  .rman-rank-num { width: 28px; font-size: 13px; }
  .rman-rank-name { font-size: 14px; }
  .rman-rank-meta { font-size: 12px; }

  .rmanaija-profile-header { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; gap: 20px; }
  .rmanaija-profile-photo { width: 110px; height: 110px; }
  .rmanaija-profile-meta { justify-content: center; }
  .rman-profile-avatar-init { width: 110px; height: 110px; font-size: 40px; }
  .rmanaija-sub-ratings { grid-template-columns: 1fr; }

  .rman-dash-sidebar { padding: 14px 16px; }
  .rman-dash-main { padding: 20px 14px; }
  .rman-form-grid { grid-template-columns: 1fr; }
  .rman-form-row  { grid-template-columns: 1fr; }
  .rman-review-summary { gap: 8px; }
  .rman-rev-sum-item { min-width: 60px; padding: 10px 14px; }

  .rman-register-page { grid-template-columns: 1fr; min-height: auto; }
  .rman-register-left { padding: 32px 20px; gap: 24px; }
  .rman-register-testimonial { display: none; }
  .rman-register-right { padding: 24px 16px; }
  .rman-register-box { padding: 24px 18px; }
  .rman-field-row { grid-template-columns: 1fr; gap: 0; }

  .rman-modal { padding: 28px 20px; }
  .rman-rankings-sidebar { margin-top: 24px; }
  .rman-review-card-header { flex-direction: column; gap: 8px; }
  .rman-review-meta { text-align: left; }
  .rmanaija-page-hero:not(.rman-page-hero-img) { padding: 40px 20px; }
  .rmanaija-page-hero h1 { font-size: 1.8rem; }
  .rman-badge-tier-row { padding: 10px; }
  .rman-badge-download-btns { flex-direction: column; }
  .rman-share-btns { flex-direction: column; }
  .rman-avatar-wrap { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .rman-footer-links { grid-template-columns: 1fr; }
  .rman-hero-stats { gap: 10px; }
  .rman-stat-divider { display: none; }
  .rmanaija-results-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .rmanaija-card-photo img,
  .rman-unclaimed-photo { height: 120px; }
  .rman-unclaimed-avatar { height: 120px; line-height: 120px; font-size: 36px; }
  .rmanaija-card-body { padding: 10px; }
  .rmanaija-card-name { font-size: 13px; margin-bottom: 2px; }
  .rmanaija-card-agency { display: none; }
  .rmanaija-card-location { font-size: 11px; margin-bottom: 6px; }
  .rmanaija-card-rating { font-size: 11px; gap: 4px; }
  .rmanaija-stars { font-size: 14px; }
  .rman-review-summary { flex-wrap: wrap; }
  .rman-dash-link .rman-nav-label { display: none; }
  .rman-dash-link { padding: 8px 12px; }
  .rman-nav-icon { font-size: 18px; }
  .rman-header-inner { padding: 0 16px; gap: 12px; }
  .rman-logo { font-size: 1.1rem; }
  .rman-section-inner { padding: 0 16px; }
  .rman-blog-grid,
  .rman-blog-grid-lg { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   BLOG + SINGLE RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .rman-single-inner { grid-template-columns: 1fr; gap: 32px; }
  .rman-article-sidebar { position: static; flex-direction: row; }
  .rman-toc-sticky       { flex: 1; }
  .rman-sidebar-agent-cta { flex: 1; }
  .rman-toc-sticky { display: none; }
  .rman-blog-featured-card { grid-template-columns: 1fr; }
  .rman-blog-featured-img { min-height: 240px; }
  .rman-dispute-criteria-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rman-single-inner { padding: 24px 16px 40px; }
  .rman-article-header { padding: 28px 20px 0; }
  .rman-article-body { padding: 24px 20px 0; font-size: 16px; }
  .rman-article-body h2 { font-size: 1.3rem; margin: 36px 0 12px; }
  .rman-article-body h3 { font-size: 1.1rem; }
  .rman-toc-mobile { margin: 16px 20px 0; }
  .rman-inline-cta { margin: 0 20px 24px; flex-direction: column; text-align: center; }
  .rman-article-tags { padding: 0 20px 20px; }
  .rman-article-share-footer { padding: 20px; }
  .rman-article-share-btns { flex-direction: column; }
  .rman-author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px 32px; }
  .rman-article-sidebar { display: none; }
  .rman-toc-mobile { display: block; }
  .rman-article-meta-row { flex-direction: column; align-items: flex-start; }
  .rman-blog-archive-hero:not(.rman-page-hero-img) { padding: 48px 20px; }
  .rman-blog-archive-page { padding: 40px 0 56px; }
  .rman-blog-featured-body { padding: 24px 20px; }
  .rman-find-agent-strip-inner { flex-direction: column; text-align: center; }
  .rman-dispute-alt-inner { flex-direction: column; }
  .rman-dispute-cta { padding: 36px 20px; }
  .rman-dispute-cta h2 { font-size: 1.5rem; }
}

/* ════════════════════════════════════════
   AGENT PROFILE PAGE — EDITORIAL REDESIGN
════════════════════════════════════════ */
.rman-profile-page {
  background: var(--rman-surface);
  min-height: 100vh;
  font-family: var(--rman-font-body);
}

/* Hero */
.rman-profile-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 420px;
  background: var(--rman-on-surface);
  position: relative;
  overflow: hidden;
}
.rman-profile-photo-col {
  position: relative;
  overflow: hidden;
}
.rman-profile-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.rman-profile-photo-col:hover .rman-profile-hero-img { filter: grayscale(0); }
.rman-profile-verified-seal {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--rman-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px 5px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.rman-profile-verified-seal span { font-size: 14px; }

.rman-profile-info-col {
  padding: 52px 56px 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.rman-profile-info-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,96,54,0.92) 0%, rgba(0,40,20,0.97) 100%);
}
.rman-profile-info-col > * { position: relative; z-index: 1; }

.rman-profile-location {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.rman-profile-name {
  font-family: var(--rman-font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}
.rman-profile-agency-line {
  font-family: var(--rman-font-quote);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
}

.rman-profile-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.rman-profile-stat-block { display: flex; flex-direction: column; gap: 2px; }
.rman-profile-big-num {
  font-family: var(--rman-font-display);
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
}
.rman-profile-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.rman-profile-stat-stars { color: var(--rman-secondary); font-size: 15px; margin-top: 2px; }
.rman-profile-stars-gold { color: #f9a825; font-size: 15px; margin: 2px 0; }
.rman-profile-stat-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.rman-stat-vdivider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

.rman-profile-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rman-profile-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--rman-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.rman-profile-btn-primary:hover { background: var(--rman-surface-low); color: var(--rman-primary); text-decoration: none; }
.rman-profile-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.rman-profile-btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; text-decoration: none; }

/* Profile body layout */
.rman-profile-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Metrics panel */
.rman-metrics-panel {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.18);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--rman-shadow-card);
  position: sticky;
  top: 80px;
}
.rman-metrics-title {
  font-family: var(--rman-font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rman-on-surface);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rman-surface-high);
}
.rman-metric-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.rman-metric-row:last-child { margin-bottom: 0; }
.rman-metric-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rman-metric-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--rman-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.rman-metric-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--rman-primary);
}
.rman-metric-bar-track {
  height: 6px;
  background: var(--rman-surface-high);
  border-radius: 3px;
  overflow: hidden;
}
.rman-metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rman-primary) 0%, #1a7a4a 100%);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.rman-overall-score-block {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rman-surface-high);
  text-align: center;
}
.rman-overall-big {
  font-family: var(--rman-font-display);
  font-size: 3rem;
  color: var(--rman-primary);
  line-height: 1;
}
.rman-overall-label { font-size: 11px; color: var(--rman-on-surface-variant); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.rman-overall-stars { color: var(--rman-secondary); font-size: 18px; margin: 4px 0; }

/* Reviews main column */
.rman-reviews-main { min-width: 0; }
.rman-reviews-header { margin-bottom: 24px; }
.rman-reviews-headline {
  font-family: var(--rman-font-display);
  font-size: 1.5rem;
  color: var(--rman-on-surface);
  margin: 0;
}
.rman-reviews-count {
  font-family: var(--rman-font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--rman-outline);
}
.rman-reviews-main-title {
  font-family: var(--rman-font-display);
  font-size: 1.75rem;
  color: var(--rman-on-surface);
  margin: 0 0 24px;
}
.rman-review-feed { display: flex; flex-direction: column; gap: 20px; }

/* Review cards — pull-quote style */
.rman-review-item {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.18);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--rman-shadow-card);
  position: relative;
}
.rman-review-item-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.rman-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rman-font-display);
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}
.rman-init-green  { background: var(--rman-primary); }
.rman-init-gold   { background: var(--rman-secondary); }
.rman-init-clay   { background: var(--rman-tertiary); }

.rman-reviewer-identity { flex: 1; min-width: 0; }
.rman-reviewer-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--rman-on-surface);
  margin: 0 0 2px;
}
.rman-reviewer-meta {
  font-size: 12px;
  color: var(--rman-on-surface-variant);
}
.rman-review-type-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--rman-surface-low);
  color: var(--rman-on-surface-variant);
  border: 1px solid var(--rman-surface-high);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.rman-review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.rman-review-rating-stars { color: var(--rman-secondary); font-size: 16px; }
.rman-review-rating-num {
  font-weight: 700;
  font-size: 14px;
  color: var(--rman-on-surface);
}
.rman-review-quote-wrap {
  position: relative;
  padding-left: 20px;
}
.rman-review-quote-wrap::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-family: var(--rman-font-display);
  font-size: 3rem;
  color: var(--rman-outline-variant);
  line-height: 1;
}
.rman-review-quote-text {
  font-family: var(--rman-font-quote);
  font-size: 15px;
  line-height: 1.75;
  color: var(--rman-on-surface);
  margin: 0;
}
.rman-review-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--rman-on-surface-variant);
}

/* Agent response block */
.rman-agent-response-block {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(0,96,54,0.04);
  border-left: 3px solid var(--rman-primary);
  border-radius: 0 6px 6px 0;
}
.rman-agent-response-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rman-primary);
  margin-bottom: 6px;
}
.rman-agent-response-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--rman-on-surface-variant);
  margin: 0;
}

/* Write review CTA */
.rman-write-review-section {
  margin-top: 48px;
  padding: 40px;
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.18);
  border-radius: 12px;
  text-align: center;
}
.rman-write-review-section h3 {
  font-family: var(--rman-font-display);
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.rman-write-review-section p {
  color: var(--rman-on-surface-variant);
  margin: 0 0 20px;
}

/* Responsive — profile page */
@media (max-width: 960px) {
  .rman-profile-hero { grid-template-columns: 1fr; }
  .rman-profile-photo-col { height: 340px; }
  .rman-profile-hero-img { object-position: center center; }
  .rman-profile-info-col { padding: 32px 28px; }
  .rman-profile-body { grid-template-columns: 1fr; }
  .rman-metrics-panel { position: static; }
}
@media (max-width: 640px) {
  .rman-profile-stats-row { gap: 20px; flex-wrap: wrap; }
  .rman-profile-big-num { font-size: 1.75rem; }
  .rman-profile-actions { flex-direction: column; }
  .rman-profile-btn-primary, .rman-profile-btn-ghost { justify-content: center; }
  .rman-review-item { padding: 20px 16px; }
  .rman-write-review-section { padding: 28px 20px; }
}

/* ════════════════════════════════════════
   DASHBOARD — OVERVIEW TAB
════════════════════════════════════════ */

/* Overview hero */
.rman-overview-hero {
  background: linear-gradient(135deg, var(--rman-primary) 0%, #003d24 100%);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.rman-overview-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.rman-overview-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rman-overview-hero-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.rman-overview-name {
  font-family: var(--rman-font-display);
  font-size: 1.75rem;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.1;
}
.rman-overview-role {
  font-family: var(--rman-font-quote);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.rman-overview-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 10px;
}
.rman-overview-avg {
  font-family: var(--rman-font-display);
  font-size: 1.1rem;
  color: #fff;
}
.rman-overview-stars { color: #f9a825; font-size: 14px; }
.rman-overview-cnt  { color: rgba(255,255,255,0.5); font-size: 12px; }

/* Completeness bar */
.rman-completeness-wrap { margin-top: 12px; }
.rman-completeness-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rman-completeness-bar {
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.rman-completeness-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.rman-completeness-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin: 5px 0 0;
  font-style: italic;
}

/* Stats bento */
.rman-overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.rman-overview-stat-card {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.18);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--rman-shadow-card);
  position: relative;
  overflow: hidden;
}
.rman-overview-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--rman-primary);
  border-radius: 2px 0 0 2px;
}
.rman-overview-stat-card.is-gold::before { background: var(--rman-secondary); }
.rman-overview-stat-card.is-teal::before { background: #0d9488; }

.rman-stat-card-icon {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
.rman-stat-card-num {
  font-family: var(--rman-font-display);
  font-size: 2.25rem;
  color: var(--rman-on-surface);
  line-height: 1;
  margin-bottom: 4px;
}
.rman-stat-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rman-on-surface-variant);
  margin-bottom: 8px;
}
.rman-stat-delta {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  display: inline-block;
}
.rman-stat-delta.up   { background: rgba(22,163,74,0.1);  color: #16a34a; }
.rman-stat-delta.down { background: rgba(186,26,26,0.08); color: #ba1a1a; }
.rman-stat-delta.flat { background: var(--rman-surface-container); color: var(--rman-on-surface-variant); }

/* Overview body */
.rman-overview-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* Activity feed */
.rman-overview-activity {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--rman-shadow-card);
}
.rman-activity-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--rman-surface-high);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rman-activity-title {
  font-family: var(--rman-font-headline);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.rman-activity-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--rman-on-surface-variant);
  font-size: 14px;
}

.rman-activity-card {
  display: flex;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rman-surface-container);
  align-items: flex-start;
}
.rman-activity-card:last-child { border-bottom: none; }
.rman-activity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rman-surface-low);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rman-font-display);
  font-size: 1rem;
  color: var(--rman-primary);
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--rman-surface-high);
}
.rman-activity-body { flex: 1; min-width: 0; }
.rman-activity-reviewer {
  font-weight: 700;
  font-size: 14px;
  color: var(--rman-on-surface);
}
.rman-activity-stars {
  color: var(--rman-secondary);
  font-size: 13px;
  margin-left: 6px;
}
.rman-activity-excerpt {
  font-size: 13px;
  color: var(--rman-on-surface-variant);
  margin: 2px 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rman-activity-actions { display: flex; gap: 8px; }
.rman-activity-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1.5px solid var(--rman-outline-variant);
  background: transparent;
  color: var(--rman-on-surface-variant);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.rman-activity-btn:hover { border-color: var(--rman-primary); color: var(--rman-primary); text-decoration: none; }
.rman-activity-btn.primary { background: var(--rman-primary); color: #fff; border-color: var(--rman-primary); }
.rman-activity-btn.primary:hover { background: var(--rman-primary-container); border-color: var(--rman-primary-container); color: #fff; }
.rman-activity-date {
  font-size: 11px;
  color: var(--rman-on-surface-variant);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Quick actions sidebar */
.rman-overview-sidebar { display: flex; flex-direction: column; gap: 16px; }

.rman-quick-actions {
  background: var(--rman-surface-white);
  border: 1px solid rgba(190,201,190,0.18);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--rman-shadow-card);
}
.rman-quick-actions-title {
  font-family: var(--rman-font-headline);
  font-size: .9rem;
  font-weight: 600;
  color: var(--rman-on-surface);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rman-surface-high);
}
.rman-quick-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--rman-on-surface);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.rman-quick-action:hover { background: var(--rman-surface-low); color: var(--rman-primary); text-decoration: none; }
.rman-quick-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--rman-surface-low);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.rman-quick-action:hover .rman-quick-action-icon { background: rgba(0,96,54,0.1); }
.rman-quick-action.rman-copied { color: var(--rman-primary); }
.rman-quick-action.rman-copied .rman-quick-chevron { color: #16a34a; }

/* Tip card */
.rman-overview-tip {
  background: var(--rman-primary);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}
.rman-overview-tip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.rman-overview-tip-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0 0 14px;
}
.rman-overview-tip a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}
.rman-overview-tip a:hover { color: #fff; }

/* Overview responsive */
@media (max-width: 960px) {
  .rman-overview-stats { grid-template-columns: repeat(2, 1fr); }
  .rman-overview-body  { grid-template-columns: 1fr; }
  .rman-overview-sidebar { order: -1; flex-direction: row; flex-wrap: wrap; }
  .rman-quick-actions, .rman-overview-tip { flex: 1 1 260px; }
}
@media (max-width: 640px) {
  .rman-overview-hero  { flex-direction: column; text-align: center; padding: 24px 20px; }
  .rman-overview-stats { grid-template-columns: 1fr; }
  .rman-overview-hero::after { display: none; }
  .rman-overview-sidebar { flex-direction: column; }
}

/* ════════════════════════════════════════
   HERO — REVIEW CTA ROW
════════════════════════════════════════ */
.rman-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 28px;
  flex-wrap: wrap;
}
.rman-hero-cta-divider {
  font-size: 12px;
  color: var(--rman-outline);
  font-weight: 500;
}
.rman-hero-cta-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rman-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .15s;
}
.rman-hero-cta-link:hover { opacity: .75; text-decoration: underline; }
@media (max-width: 768px) {
  .rman-hero-cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .rman-hero-review-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════
   FOOTER — MOBILE RESPONSIVENESS
════════════════════════════════════════ */
@media (max-width: 768px) {
  .rman-footer-top { flex-direction: column; gap: 32px; }
  .rman-footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .rman-footer-brand { max-width: 100%; }
  .rman-footer-brand p { font-size: 13px; }
  .rman-footer-bottom { text-align: center; padding: 16px 20px; }
  .rman-footer-inner { padding: 40px 20px 24px; }
  .rman-find-agent-strip-inner { flex-direction: column; text-align: center; align-items: center; gap: 12px; }
  .rman-find-agent-strip-inner .rman-btn-gold { width: 100%; justify-content: center; }
  .rman-review-cta-inner { flex-direction: column; text-align: center; gap: 16px; }
  .rman-review-cta-inner .rman-btn-gold { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .rman-footer-links { grid-template-columns: 1fr; gap: 20px; }
  .rman-footer-logo { font-size: 20px; }
}

/* ════════════════════════════════════════
   DASHBOARD — MOBILE (all tabs)
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Layout */
  .rman-dash-layout { flex-direction: column; }
  .rman-dash-sidebar {
    width: 100%;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--rman-surface-high);
    padding-bottom: 0;
  }
  .rman-dash-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 0 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rman-dash-nav::-webkit-scrollbar { display: none; }
  .rman-dash-link {
    flex-shrink: 0;
    padding: 12px 14px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    font-size: 12px;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: auto;
  }
  .rman-dash-link.active { border-bottom-color: var(--rman-primary); }
  .rman-nav-label { font-size: 11px; }
  .rman-dash-id { display: none; }
  .rman-dash-main { padding: 20px 16px; }

  /* Tab panels */
  .rman-tab-panel h2 { font-size: 1.4rem; margin-bottom: 20px; }
  .rman-form-card { padding: 18px 16px; }
  .rman-form-row { grid-template-columns: 1fr; }

  /* Overview */
  .rman-overview-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rman-overview-stat-card { padding: 18px 14px; }
  .rman-stat-card-num { font-size: 1.75rem; }
  .rman-overview-body { grid-template-columns: 1fr; }
  .rman-overview-sidebar { flex-direction: column; }
  .rman-quick-actions, .rman-overview-tip { width: 100%; }
  .rman-activity-card { gap: 10px; }
  .rman-activity-excerpt { max-width: 200px; }

  /* Badge tab */
  .rman-badge-tier-row { flex-direction: column; gap: 12px; }
  .rman-badge-download-btns { flex-direction: column; gap: 8px; }
  .rman-badge-download-btns a { width: 100%; text-align: center; justify-content: center; }
  .rman-ranking-badge-section { flex-direction: column; gap: 12px; }

  /* Reviews tab */
  .rman-review-card-header { flex-direction: column; gap: 8px; }
  .rman-review-card-footer { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .rman-overview-stats { grid-template-columns: 1fr; }
  .rman-dash-link { padding: 10px 10px; }
  .rman-nav-label { display: none; }
  .rman-dash-link .rman-nav-icon { font-size: 22px !important; }
}

/* ════════════════════════════════════════
   ABOUT US PAGE
════════════════════════════════════════ */

/* Eyebrow label */
.rman-about-eyebrow {
  display: inline-block;
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.rman-about-eyebrow--dark {
  background: rgba(0,96,54,0.09);
  color: var(--rman-primary);
}
.rman-about-eyebrow--light {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

/* Hero */
.rman-about-hero {
  background: var(--rman-primary);
  padding: 96px 24px 88px;
  text-align: center;
}
.rman-about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.rman-about-hero h1 {
  font-family: var(--rman-font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
}
.rman-about-hero p {
  font-family: var(--rman-font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mission */
.rman-about-mission {
  background: var(--rman-surface-low);
  padding: 88px 24px;
}
.rman-about-mission-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.rman-about-mission-text h2 {
  font-family: var(--rman-font-headline);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 20px;
  line-height: 1.3;
}
.rman-about-mission-text p {
  font-family: var(--rman-font-body);
  font-size: 15px;
  color: var(--rman-on-surface-variant);
  line-height: 1.8;
  margin: 0 0 16px;
}
.rman-about-mission-text p:last-child { margin-bottom: 0; }

/* Stat bento */
.rman-about-stat-bento {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rman-about-stat-card {
  background: var(--rman-surface-white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--rman-shadow-card);
  border-left: 4px solid var(--rman-primary);
}
.rman-about-stat-num {
  font-family: var(--rman-font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--rman-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.rman-about-stat-label {
  font-family: var(--rman-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--rman-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Feature grid */
.rman-about-feature-grid-section {
  background: var(--rman-surface);
  padding: 88px 24px;
}
.rman-about-feature-grid-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.rman-about-feature-grid-heading {
  font-family: var(--rman-font-headline);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--rman-on-surface);
  text-align: center;
  margin: 0 0 52px;
}
.rman-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rman-about-feature-card {
  background: var(--rman-surface-white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--rman-shadow-card);
  border-top: 3px solid var(--rman-primary);
  transition: box-shadow 0.2s;
}
.rman-about-feature-card:hover {
  box-shadow: var(--rman-shadow-elevated);
}
.rman-about-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,96,54,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--rman-primary);
}
.rman-about-feature-card h3 {
  font-family: var(--rman-font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 12px;
}
.rman-about-feature-card p {
  font-family: var(--rman-font-body);
  font-size: 14px;
  color: var(--rman-on-surface-variant);
  line-height: 1.75;
  margin: 0;
}

/* Values */
.rman-about-values {
  background: var(--rman-primary);
  padding: 88px 24px;
  text-align: center;
}
.rman-about-values-inner {
  max-width: 720px;
  margin: 0 auto;
}
.rman-about-values h2 {
  font-family: var(--rman-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 16px;
}
.rman-about-values-lead {
  font-family: var(--rman-font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
  line-height: 1.7;
}
.rman-about-values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.rman-about-value-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--rman-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 40px;
  letter-spacing: 0.02em;
}

/* CTA */
.rman-about-cta {
  background: var(--rman-surface-low);
  padding: 88px 24px;
  text-align: center;
}
.rman-about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.rman-about-cta h2 {
  font-family: var(--rman-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--rman-on-surface);
  margin: 0 0 16px;
}
.rman-about-cta p {
  font-family: var(--rman-font-body);
  font-size: 1rem;
  color: var(--rman-on-surface-variant);
  line-height: 1.75;
  margin: 0 0 36px;
}
.rman-about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.rman-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--rman-primary);
  border: 1.5px solid var(--rman-primary);
  border-radius: 40px;
  padding: 12px 28px;
  font-family: var(--rman-font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.rman-btn-outline:hover {
  background: var(--rman-primary);
  color: #fff;
}

/* About page responsive */
@media (max-width: 768px) {
  .rman-about-hero { padding: 64px 20px 56px; }
  .rman-about-mission { padding: 56px 20px; }
  .rman-about-mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rman-about-feature-grid-section { padding: 56px 20px; }
  .rman-about-feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .rman-about-values { padding: 56px 20px; }
  .rman-about-cta { padding: 56px 20px; }
  .rman-about-cta-btns { flex-direction: column; align-items: center; }
  .rman-about-cta-btns a { width: 100%; max-width: 280px; text-align: center; }
}


/* ════════════════════════════════════════
   CONTACT US PAGE
════════════════════════════════════════ */

/* Hero */
.rman-contact-hero {
  background: var(--rman-primary);
  padding: 96px 24px 88px;
  text-align: center;
}
.rman-contact-hero-inner {
  max-width: 620px;
  margin: 0 auto;
}
.rman-contact-hero h1 {
  font-family: var(--rman-font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 18px;
}
.rman-contact-hero p {
  font-family: var(--rman-font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.83);
  line-height: 1.75;
  margin: 0;
}

/* Body 2-col */
.rman-contact-body {
  background: var(--rman-surface);
  padding: 80px 24px;
}
.rman-contact-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* Left: contact info */
.rman-contact-info h2 {
  font-family: var(--rman-font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 32px;
}
.rman-contact-detail-block {
  margin-bottom: 28px;
}
.rman-contact-detail-label {
  font-family: var(--rman-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rman-outline);
  margin-bottom: 6px;
}
.rman-contact-detail-value {
  font-family: var(--rman-font-body);
  font-size: 15px;
  color: var(--rman-on-surface);
  line-height: 1.65;
  text-decoration: none;
}
a.rman-contact-detail-value:hover { text-decoration: underline; }
.rman-contact-detail-value a { color: var(--rman-primary); }

.rman-contact-social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.rman-contact-social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--rman-surface-low);
  color: var(--rman-on-surface-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.rman-contact-social-link:hover {
  background: var(--rman-primary);
  color: #fff;
}

/* Right: form card */
.rman-contact-form-wrap {
  background: var(--rman-surface-white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--rman-shadow-card);
}
.rman-contact-form-wrap h2 {
  font-family: var(--rman-font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 28px;
}
.rman-contact-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--rman-font-body);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.rman-contact-msg.success {
  display: block;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.rman-contact-msg.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}
.rman-contact-form .rman-form-group { margin-bottom: 20px; }
.rman-contact-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 4px;
  cursor: pointer;
  border: none;
}

/* FAQ strip */
.rman-contact-faq {
  background: var(--rman-surface-low);
  padding: 72px 24px;
}
.rman-contact-faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.rman-contact-faq-heading {
  font-family: var(--rman-font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 32px;
  text-align: center;
}

/* Contact page responsive */
@media (max-width: 768px) {
  .rman-contact-hero { padding: 64px 20px 56px; }
  .rman-contact-body { padding: 56px 20px; }
  .rman-contact-body-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rman-contact-form-wrap {
    padding: 28px 20px;
  }
  .rman-contact-faq { padding: 52px 20px; }
}

/* ════════════════════════════════════════
   AGENT LOOKUP PAGE  /check/{query}
════════════════════════════════════════ */
.rman-lookup-page {
  background: var(--rman-surface-low);
  min-height: 60vh;
  padding: 56px 20px 80px;
}

.rman-lookup-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* Main card */
.rman-lookup-card {
  background: var(--rman-surface-white);
  border-radius: 16px;
  box-shadow: var(--rman-shadow-card);
  overflow: hidden;
}

/* Identity row */
.rman-lookup-identity {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 32px 0;
  flex-wrap: wrap;
}

.rman-lookup-avatar-img,
.rman-lookup-avatar-init {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.rman-lookup-avatar-init {
  background: var(--rman-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rman-font-display);
  font-size: 32px;
  font-weight: 400;
}

.rman-lookup-id-body { flex: 1; min-width: 0; }

.rman-lookup-name {
  font-family: var(--rman-font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rman-on-surface);
  margin: 0 0 4px;
  line-height: 1.2;
}

.rman-lookup-agency {
  font-size: 14px;
  color: var(--rman-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.rman-lookup-loc {
  font-size: 13px;
  color: var(--rman-outline);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rman-lookup-badge { align-self: flex-start; margin-top: 4px; }

/* Rating bar */
.rman-lookup-rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-top: 1px solid var(--rman-outline-variant);
  border-bottom: 1px solid var(--rman-outline-variant);
  margin-top: 24px;
  flex-wrap: wrap;
}

.rman-lookup-avg {
  font-family: var(--rman-font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--rman-on-surface);
  line-height: 1;
}

.rman-lookup-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}

.rman-lookup-rv-count {
  font-size: 13px;
  color: var(--rman-outline);
  margin-left: auto;
}

.rman-lookup-no-rating {
  font-size: 14px;
  color: var(--rman-outline);
  font-style: italic;
}

/* AI Summary */
.rman-lookup-summary {
  padding: 24px 32px;
  border-bottom: 1px solid var(--rman-outline-variant);
  background: var(--rman-surface-low);
}

.rman-lookup-summary-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rman-primary);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rman-lookup-summary-text {
  font-family: var(--rman-font-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--rman-on-surface);
  margin: 0;
}

/* Actions */
.rman-lookup-actions {
  display: flex;
  gap: 12px;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.rman-lookup-btn-primary { flex: 1; text-align: center; min-width: 180px; }

.rman-lookup-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--rman-primary);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rman-primary);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  flex: 1;
  justify-content: center;
  min-width: 160px;
}
.rman-lookup-btn-ghost:hover { background: rgba(0,96,54,0.06); }

/* Share strip */
.rman-lookup-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--rman-surface-container);
  flex-wrap: wrap;
}

.rman-lookup-share-label {
  font-size: 12px;
  color: var(--rman-outline);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.rman-lookup-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--rman-outline-variant);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rman-on-surface);
  cursor: pointer;
  transition: background .15s;
}
.rman-lookup-copy-btn:hover { background: var(--rman-surface-low); }

.rman-lookup-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
}
.rman-lookup-wa-btn:hover { opacity: .88; }

/* Sidebar */
.rman-lookup-sidebar-card {
  background: var(--rman-surface-white);
  border-radius: 12px;
  box-shadow: var(--rman-shadow-card);
  padding: 24px 20px;
}

.rman-lookup-sidebar-card h3 {
  font-family: var(--rman-font-headline);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--rman-on-surface);
}

.rman-lookup-sidebar-card p {
  font-size: 13px;
  color: var(--rman-on-surface-variant);
  line-height: 1.6;
  margin: 0;
}

/* Not Found */
.rman-lookup-notfound {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 20px;
}

.rman-lookup-nf-icon { font-size: 56px; margin-bottom: 20px; }

.rman-lookup-notfound h1 {
  font-family: var(--rman-font-headline);
  font-size: 2rem;
  color: var(--rman-on-surface);
  margin: 0 0 12px;
}

.rman-lookup-notfound p {
  font-size: 15px;
  color: var(--rman-on-surface-variant);
  margin: 0 0 28px;
  line-height: 1.6;
}

.rman-lookup-search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.rman-lookup-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--rman-outline-variant);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--rman-font-body);
  background: var(--rman-surface-white);
  color: var(--rman-on-surface);
  outline: none;
  transition: border-color .15s;
}
.rman-lookup-input:focus { border-color: var(--rman-primary); }

.rman-lookup-nf-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .rman-lookup-wrap { grid-template-columns: 1fr; }
  .rman-lookup-sidebar { order: -1; }
  .rman-lookup-identity { padding: 24px 20px 0; }
  .rman-lookup-rating-bar { padding: 16px 20px; }
  .rman-lookup-summary { padding: 20px; }
  .rman-lookup-actions { padding: 20px; flex-direction: column; }
  .rman-lookup-btn-primary,
  .rman-lookup-btn-ghost { min-width: 0; width: 100%; justify-content: center; }
  .rman-lookup-share { padding: 14px 20px; gap: 8px; }
  .rman-lookup-search-form { flex-direction: column; }
}
