/* ── RenewalCheck Custom CSS ── */

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

:root {
  --navy:   #0C1F3F;
  --teal:   #0F6E56;
  --teal-l: #E1F5EE;
  --teal-m: #9FE1CB;
  --gold:   #B8862A;
  --off:    #FAF9F6;
  --border: #E8E6E0;
  --text:   #1A1918;
  --muted:  #6B6965;
  --light:  #F2F0EB;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  background: var(--off);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ── NAV ── */
.rc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.admin-bar .rc-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .rc-nav { top: 46px; } }
.rc-nav-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--navy); text-decoration: none; letter-spacing: -0.01em; }
.rc-nav-brand .teal { color: var(--teal); }
.rc-nav-links { display: flex; align-items: center; gap: 2rem; }
.rc-nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.rc-nav-links a:hover { color: var(--navy); }
.rc-nav-cta { background: var(--navy) !important; color: #fff !important; padding: 0.55rem 1.25rem !important; border-radius: 6px !important; font-size: 0.82rem !important; font-weight: 600 !important; letter-spacing: 0.03em !important; transition: background 0.2s !important; text-decoration: none !important; }
.rc-nav-cta:hover { background: var(--teal) !important; }

/* ── HERO ── */
.rc-hero {
  min-height: 100vh;
  display: flex !important; flex-direction: column !important;
  align-items: center !important; justify-content: center !important;
  padding: 6rem 5vw 5rem !important;
  text-align: center; position: relative; overflow: hidden; background: var(--off);
}
.admin-bar .rc-hero { padding-top: 8rem !important; }
.rc-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(15,110,86,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 20%, rgba(12,31,63,0.04) 0%, transparent 60%);
}
.rc-hero > * { position: relative; z-index: 1; }

.rc-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-l); color: var(--teal);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.4rem 1rem; border-radius: 99px;
  margin-bottom: 1.75rem !important; border: 1px solid var(--teal-m);
  animation: rcFadeUp 0.6s ease both;
}
.rc-hero-badge-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: rcPulse 2s infinite; }
@keyframes rcPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.rc-hero-h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2.8rem, 6vw, 4.5rem) !important;
  font-weight: 400 !important; color: var(--navy) !important;
  line-height: 1.1 !important; letter-spacing: -0.02em !important;
  max-width: 820px !important; margin: 0 auto 1.5rem !important;
  animation: rcFadeUp 0.6s ease 0.1s both;
}
.rc-hero-h1 em { font-style: italic; color: var(--teal); }

.rc-hero-sub {
  font-size: 1.05rem !important; font-weight: 300 !important;
  color: var(--muted) !important; max-width: 520px !important;
  line-height: 1.75 !important; margin: 0 auto 2.5rem !important;
  animation: rcFadeUp 0.6s ease 0.2s both;
}

.rc-hero-actions {
  display: flex !important; align-items: center !important;
  gap: 1rem !important; flex-wrap: wrap !important; justify-content: center !important;
  animation: rcFadeUp 0.6s ease 0.3s both;
}

.rc-btn-primary {
  background: var(--navy); color: #fff; padding: 0.9rem 2rem;
  border-radius: 8px; font-family: 'Mulish', sans-serif;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  letter-spacing: 0.02em; transition: all 0.2s; border: none; cursor: pointer; display: inline-block;
}
.rc-btn-primary:hover { background: var(--teal); transform: translateY(-1px); color: #fff; }

.rc-btn-ghost { color: var(--muted); font-size: 0.85rem; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.rc-btn-ghost:hover { color: var(--navy); }

.rc-hero-proof {
  margin-top: 3.5rem !important; font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  animation: rcFadeUp 0.6s ease 0.4s both;
}
.rc-proof-divider { width: 1px; height: 12px; background: var(--border); }

/* ── SECTION COMMONS ── */
.rc-section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; color: var(--teal); text-transform: uppercase; margin-bottom: 0.75rem; text-align: center; display: block; }
.rc-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; color: var(--navy); text-align: center; letter-spacing: -0.02em; line-height: 1.2; max-width: 600px; margin: 0 auto 0.75rem; }
.rc-section-sub { font-size: 0.9rem; color: var(--muted); text-align: center; max-width: 480px; margin: 0 auto 3rem; line-height: 1.7; }

/* ── PREVIEW SECTION ── */
.rc-preview-section { padding: 5rem 5vw; display: flex; flex-direction: column; align-items: center; background: var(--off); }

/* ── REPORT CARD ── */
.rc-report-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; width: 100%; max-width: 680px; overflow: hidden; box-shadow: 0 4px 40px rgba(12,31,63,0.06); }
.rc-report-header { background: var(--navy); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.rc-report-brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; line-height: 1.1; }
.rc-report-brand .teal { color: var(--teal-m); }
.rc-report-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.rc-report-date { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.rc-report-body { padding: 1.5rem; }
.rc-report-property { margin-bottom: 1.25rem; }
.rc-report-address { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.rc-report-meta { font-size: 0.78rem; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.rc-status-good { display: inline-flex; align-items: center; gap: 0.35rem; background: #EAF3DE; color: #3B6D11; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.2rem 0.65rem; border-radius: 99px; border: 1px solid #C0DD97; }
.rc-status-good::before { content: ''; width: 6px; height: 6px; background: #3B6D11; border-radius: 50%; display: inline-block; }
.rc-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 1.25rem; }
.rc-metric { padding: 0.75rem 1rem; border-right: 1px solid var(--border); background: var(--light); }
.rc-metric:last-child { border-right: none; }
.rc-metric-label { font-size: 0.65rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.rc-metric-value { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); }
.rc-metric-value.small { font-size: 0.8rem; padding-top: 3px; font-family: 'Mulish', sans-serif; }
.rc-report-section { margin-bottom: 1.1rem; }
.rc-report-section-title { font-size: 0.65rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; padding-bottom: 0.35rem; border-bottom: 1.5px solid var(--teal); }
.rc-summary-text { font-size: 0.82rem; color: var(--text); line-height: 1.65; }
.rc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.rc-list-box { border-radius: 8px; padding: 0.75rem 1rem; }
.rc-list-box.pro { background: #EAF3DE; }
.rc-list-box.con { background: #FCEBEB; }
.rc-list-box-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.rc-list-box.pro .rc-list-box-title { color: #3B6D11; }
.rc-list-box.con .rc-list-box-title { color: #A32D2D; }
.rc-list-item { font-size: 0.78rem; line-height: 1.5; color: var(--text); display: flex; gap: 0.4rem; margin-bottom: 0.3rem; }
.rc-list-item:last-child { margin-bottom: 0; }
.dot-pro { color: #3B6D11; }
.dot-con { color: #A32D2D; }
.rc-risks { display: flex; flex-direction: column; gap: 0.5rem; }
.rc-risk { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0.75rem; border-radius: 7px; background: var(--light); border: 1px solid var(--border); }
.rc-risk-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.2rem 0.55rem; border-radius: 99px; white-space: nowrap; margin-top: 1px; }
.rc-risk-high { background: #FCEBEB; color: #A32D2D; }
.rc-risk-medium { background: #FAEEDA; color: #854F0B; }
.rc-risk-low { background: #EAF3DE; color: #3B6D11; }
.rc-risk-text { font-size: 0.78rem; line-height: 1.5; }
.rc-risk-name { font-weight: 600; color: var(--navy); margin-bottom: 1px; }
.rc-risk-desc { color: var(--muted); }
.rc-report-footer { padding: 0.75rem 1.5rem; background: var(--light); border-top: 1px solid var(--border); font-size: 0.68rem; color: var(--muted); font-style: italic; }

/* ── HOW IT WORKS ── */
.rc-how-section { padding: 5rem 5vw; background: var(--navy); text-align: center; }
.rc-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 860px; margin: 0 auto; position: relative; }
.rc-step-item { padding: 0 1.5rem; position: relative; }
.rc-step-item:not(:last-child)::after { content: ''; position: absolute; top: 24px; right: -1px; width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.rc-step-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--teal-m); opacity: 0.4; margin-bottom: 0.75rem; line-height: 1; }
.rc-step-title { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.rc-step-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── WHY SECTION ── */
.rc-why-section { padding: 5rem 5vw; background: var(--light); display: flex; flex-direction: column; align-items: center; }
.rc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 980px; width: 100%; }
.rc-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.rc-why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(12,31,63,0.12);
  box-shadow: 0 12px 32px -12px rgba(12,31,63,0.18), 0 2px 6px rgba(12,31,63,0.04);
}
.rc-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--teal-l) 60%, var(--teal-m) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 0 0 1px rgba(15,110,86,0.12),
    0 6px 18px -6px rgba(15,110,86,0.28);
  position: relative;
}
.rc-why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.6));
  position: relative;
  z-index: 1;
}
/* Per-card color differentiation for visual rhythm */
.rc-why-card:nth-child(2) .rc-why-icon {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #E8EEF8 60%, #C9D4E8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 0 0 1px rgba(12,31,63,0.12),
    0 6px 18px -6px rgba(12,31,63,0.25);
}
.rc-why-card:nth-child(2) .rc-why-icon svg { stroke: var(--navy); }
.rc-why-card:nth-child(3) .rc-why-icon {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #FAEEDA 60%, #ECCF94 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 0 0 1px rgba(184,134,42,0.18),
    0 6px 18px -6px rgba(184,134,42,0.32);
}
.rc-why-card:nth-child(3) .rc-why-icon svg { stroke: var(--gold); }

.rc-why-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}
.rc-why-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 28ch;
  margin: 0 auto;
}

/* ── PRICING ── */
.rc-pricing-section { padding: 5rem 5vw; display: flex; flex-direction: column; align-items: center; background: var(--off); }
.rc-pricing-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 440px; text-align: center; box-shadow: 0 2px 30px rgba(12,31,63,0.05); color: #1A1918; }
.rc-price-label-tag { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6B6965; margin-bottom: 0.5rem; }
.rc-price-amount { display: block; font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #0C1F3F; line-height: 1.1; margin: 0.25rem 0; }
.rc-price-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.rc-pricing-features { text-align: left; margin-bottom: 2rem; }
.rc-pricing-feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text); padding: 0.6rem 0; border-bottom: 1px solid var(--border); line-height: 1.4; }
.rc-pricing-feature:last-child { border-bottom: none; }
.rc-pf-check { width: 18px; height: 18px; min-width: 18px; background: var(--teal-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.rc-pf-check svg { width: 10px; height: 10px; stroke: var(--teal); stroke-width: 2.5; fill: none; }
.rc-pricing-note { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }

/* ── CTA ── */
.rc-cta-section { padding: 5rem 5vw; text-align: center; background: var(--navy); }
.rc-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); color: #fff; font-weight: 400; letter-spacing: -0.02em; margin: 0 auto 0.75rem; max-width: 580px; line-height: 1.2; }
.rc-cta-title em { font-style: italic; }
.rc-cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto 2rem; line-height: 1.7; }
.rc-btn-cta { display: inline-block; background: #fff; color: var(--navy); font-size: 0.95rem; font-weight: 600; padding: 1rem 2.5rem; border-radius: 8px; text-decoration: none; transition: all 0.2s; font-family: 'Mulish', sans-serif; }
.rc-btn-cta:hover { background: var(--teal-l); color: var(--navy); transform: translateY(-1px); }
.rc-cta-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 1rem; }

/* ── BUTTONS ── */
.gb-button-wrapper { display: flex !important; justify-content: center !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }

/* ── FOOTER ── */
.rc-footer { padding: 2rem 5vw; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; background: var(--off); }
.rc-footer-brand { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); text-decoration: none; }
.rc-footer-brand .teal { color: var(--teal); }
.rc-footer-right { font-size: 0.75rem; color: var(--muted); }
.rc-footer-links { display: flex; gap: 1.5rem; }
.rc-footer-links a { font-size: 0.75rem; color: var(--muted); text-decoration: none; }
.rc-footer-links a:hover { color: var(--navy); }

/* ── ANIMATIONS ── */
@keyframes rcFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .rc-steps-grid { grid-template-columns: 1fr; }
  .rc-step-item:not(:last-child)::after { display: none; }
  .rc-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rc-metrics { grid-template-columns: 1fr 1fr; }
  .rc-metric:nth-child(2) { border-right: none; }
  .rc-metric:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .rc-metric:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .rc-two-col { grid-template-columns: 1fr; }
  .rc-nav-links { display: none; }
  .rc-nav-auth-mobile { display: flex !important; }
}
.rc-nav-auth-mobile { display: none; align-items: center; }
/* Mobile Sign in button uses solid teal to stand out */
.rc-nav-auth-mobile .rc-nav-cta--alt {
  background: var(--teal) !important;
  color: #fff !important;
  border: none !important;
}
.rc-nav-auth-mobile .rc-nav-cta--alt:hover {
  background: var(--navy) !important;
}

/* ── LOGO ── */
.rc-nav-logo {
  height: 56px;
  width: auto;
  display: block;
}

.rc-footer-logo {
  height: 44px;
  width: auto;
  display: block;
}

/* ── NAV LOGIN BUTTON ── */
#rc-nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.rc-nav-cta--alt {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1px solid var(--border) !important;
}
.rc-nav-cta--alt:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

/* ── TWO-COLUMN PRICING ── */
.rc-pricing-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  width: 100%;
}
@media (max-width: 640px) { .rc-pricing-two-col { grid-template-columns: 1fr; } }

.rc-pricing-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 900px) { .rc-pricing-three-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rc-pricing-three-col { grid-template-columns: 1fr; } }

.rc-price-was { font-size: 0.85rem; color: #A32D2D; margin-bottom: 0.5rem; text-decoration: line-through; }

.rc-pricing-card--featured {
  border: 2px solid #6B3FA0;
  position: relative;
}
.rc-pricing-card--featured .rc-price-amount {
  color: #0C1F3F;
}

.rc-pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6B3FA0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.85rem;
  border-radius: 99px;
  white-space: nowrap;
}



/* Pricing card icon — circular halo at the top of each plan */
.rc-pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.rc-pricing-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.6));
}
.rc-pricing-icon--single {
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--teal-l) 60%, var(--teal-m) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 0 0 1px rgba(15,110,86,0.12),
    0 6px 18px -6px rgba(15,110,86,0.28);
  color: var(--teal);
}
.rc-pricing-icon--free {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #EAF0F8 60%, #C5D5EC 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 0 0 1px rgba(12,31,63,0.12),
    0 6px 18px -6px rgba(12,31,63,0.20);
  color: #0C1F3F;
}
.rc-pricing-icon--unlimited {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #F0EAF8 60%, #D4C5EC 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 0 0 1px rgba(107,63,160,0.15),
    0 6px 18px -6px rgba(107,63,160,0.32);
  color: #6B3FA0;
}

/* ── PARTNERS BLOCK (homepage) ── */
.rc-partners-block { background: var(--off); padding: 4rem 5vw; border-top: 1px solid var(--border); }
.rc-partners-block-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.rc-partners-block-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; margin: 0.5rem 0 1rem; }
.rc-partners-block-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.rc-partners-block-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--teal); color: #fff; padding: 0.75rem 1.5rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.rc-partners-block-cta:hover { background: #0d5c47; }
.rc-partners-block-cta::after { content: '→'; }
.rc-partners-block-stats { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.rc-partners-block-stat { border-left: 3px solid var(--teal); padding-left: 1.25rem; }
.rc-partners-block-stat-value { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; }
.rc-partners-block-stat-label { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 720px) { .rc-partners-block-inner { grid-template-columns: 1fr; gap: 2rem; } }
