/* ============================================================
   T.A.G. Business Funding — Resource Center Shared Stylesheet
   ============================================================ */

:root {
  --navy:       #0d2340;
  --navy-light: #13305a;
  --gold:       #B8860B;
  --gold-light: #d4a017;
  --gold-pale:  #fffbea;
  --white:      #ffffff;
  --bg:         #f5f7fa;
  --bg-dark:    #eef1f6;
  --border:     #e0e6ed;
  --text:       #1a2333;
  --muted:      #64748b;
  --green:      #16a34a;
  --green-pale: #f0fdf4;
  --red:        #dc2626;
  --red-pale:   #fef2f2;
  --blue:       #1d4ed8;
  --blue-pale:  #eff6ff;
  --orange:     #ea580c;
  --orange-pale:#fff7ed;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,.1);
  --transition: 0.18s ease;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width:  1120px;
  --funding-link: 'https://funding.towersassetgroup.com/?utm_source=chatgpt.com';
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── Typography ─────────────────────────────────────── */
h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.15; color: var(--navy); }
h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; line-height: 1.25; color: var(--navy); }
h3 { font-size: clamp(16px, 2.5vw, 20px); font-weight: 700; color: var(--navy); }
h4 { font-size: 16px; font-weight: 600; color: var(--navy); }
p  { margin-bottom: 1em; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ── Header ─────────────────────────────────────────── */
.rc-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.rc-header-brand {
  font-size: 17px; font-weight: 800; color: var(--white);
  display: flex; align-items: center; gap: 6px;
}
.rc-header-brand span { color: var(--gold-light); }
.rc-header-nav {
  display: flex; align-items: center; gap: 8px;
}
.rc-header-nav a {
  font-size: 13px; color: rgba(255,255,255,.75); padding: 6px 12px;
  border-radius: 6px; transition: var(--transition);
}
.rc-header-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.rc-header-nav .active { color: var(--gold-light); }
.btn-get-funding {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--white) !important;
  font-size: 13px; font-weight: 700; padding: 8px 18px;
  border-radius: 6px; transition: var(--transition); white-space: nowrap;
  letter-spacing: .3px;
}
.btn-get-funding:hover { background: var(--gold-light); color: var(--white) !important; transform: translateY(-1px); }
.btn-get-funding::after { content: '→'; }

/* ── Breadcrumb ─────────────────────────────────────── */
.rc-breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.rc-breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 4px;
  max-width: var(--max-width); margin: 0 auto;
  font-size: 13px; color: var(--muted);
}
.rc-breadcrumb li + li::before { content: '/'; margin-right: 4px; color: var(--border); }
.rc-breadcrumb a { color: var(--muted); }
.rc-breadcrumb a:hover { color: var(--gold); }
.rc-breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ── Hero ────────────────────────────────────────────── */
.rc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); padding: clamp(40px, 6vw, 72px) 24px;
  text-align: center;
}
.rc-hero h1 { color: var(--white); max-width: 760px; margin: 0 auto 16px; }
.rc-hero .hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.8);
  max-width: 600px; margin: 0 auto 32px; line-height: 1.6;
}
.rc-hero .hero-badge {
  display: inline-block; background: rgba(184,134,11,.2);
  border: 1px solid rgba(184,134,11,.4);
  color: var(--gold-light); font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--white);
  font-size: 15px; font-weight: 700; padding: 13px 28px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(184,134,11,.3); color: var(--white); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 600; padding: 13px 28px;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,.4);
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }

/* ── Main layout ─────────────────────────────────────── */
.rc-main {
  max-width: var(--max-width); margin: 0 auto; padding: 40px 24px 64px;
}
.rc-main-wide { max-width: 100%; padding: 40px 24px 64px; }

/* ── Section ─────────────────────────────────────────── */
.rc-section { margin-bottom: 48px; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.section-title { margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* ── Cards ───────────────────────────────────────────── */
.rc-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
  box-shadow: var(--shadow);
}
.rc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.resource-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px;
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column;
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }
.resource-card .card-icon { font-size: 28px; margin-bottom: 14px; }
.resource-card h3 { font-size: 16px; margin-bottom: 8px; }
.resource-card p  { font-size: 14px; color: var(--muted); flex: 1; margin-bottom: 16px; }
.resource-card .card-meta {
  display: flex; gap: 8px; align-items: center; margin-bottom: 16px; flex-wrap: wrap;
}
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: .5px;
}
.badge-tool    { background: #eff6ff; color: #1d4ed8; }
.badge-calc    { background: #f0fdf4; color: #16a34a; }
.badge-guide   { background: #fff7ed; color: #ea580c; }
.badge-check   { background: #fdf4ff; color: #7c3aed; }
.badge-assess  { background: var(--gold-pale); color: var(--gold); border: 1px solid #fde68a; }
.time-est { font-size: 11px; color: var(--muted); }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  padding: 8px 16px; border-radius: 6px; background: var(--bg);
  border: 1px solid var(--border); transition: var(--transition);
  align-self: flex-start;
}
.card-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Calculator ──────────────────────────────────────── */
.calc-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
@media (max-width: 768px) { .calc-layout { grid-template-columns: 1fr; } }
.calc-inputs, .calc-results {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow);
}
.calc-results { background: var(--navy); color: var(--white); }
.calc-results h3 { color: var(--white); margin-bottom: 20px; }
.input-group { margin-bottom: 20px; }
.input-label {
  display: block; font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.input-hint { font-size: 11px; color: var(--muted); margin-top: 4px; }
.rc-input {
  width: 100%; padding: 10px 14px; font-size: 15px;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--bg); color: var(--text);
  transition: var(--transition); font-family: var(--font);
}
.rc-input:focus { outline: none; border-color: var(--gold); background: var(--white); }
.rc-select {
  width: 100%; padding: 10px 14px; font-size: 15px;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--bg); color: var(--text);
  cursor: pointer; font-family: var(--font);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.rc-select:focus { outline: none; border-color: var(--gold); }
.range-wrapper { position: relative; }
.rc-range {
  width: 100%; height: 6px; border-radius: 3px; appearance: none;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--val, 50%), var(--border) var(--val, 50%));
  cursor: pointer; margin-bottom: 4px;
}
.rc-range::-webkit-slider-thumb {
  appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
.range-value { font-size: 15px; font-weight: 700; color: var(--navy); text-align: center; margin-top: 4px; }
.toggle-group { display: flex; gap: 0; border-radius: 8px; overflow: hidden; border: 1.5px solid var(--border); }
.toggle-btn {
  flex: 1; padding: 9px 16px; font-size: 14px; font-weight: 600;
  border: none; background: var(--bg); color: var(--muted); cursor: pointer;
  transition: var(--transition);
}
.toggle-btn.active { background: var(--navy); color: var(--white); }
.result-stat {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
}
.result-stat:last-child { border-bottom: none; }
.result-stat .stat-label { font-size: 13px; color: rgba(255,255,255,.65); }
.result-stat .stat-value { font-size: 18px; font-weight: 800; color: var(--white); }
.result-stat .stat-value.highlight { color: var(--gold-light); font-size: 22px; }
.result-note { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 16px; line-height: 1.5; }

/* ── Score / Gauge ───────────────────────────────────── */
.score-display {
  text-align: center; padding: 32px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.score-gauge { position: relative; width: 160px; height: 80px; margin: 0 auto 16px; overflow: hidden; }
.score-gauge svg { width: 160px; height: 80px; }
.gauge-track { fill: none; stroke: var(--border); stroke-width: 14; stroke-linecap: round; }
.gauge-fill  { fill: none; stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset .8s ease; }
.score-number { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.score-label  { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.score-flags  { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.score-flag { font-size: 12px; background: var(--green-pale); color: var(--green); padding: 4px 12px; border-radius: 20px; }
.score-warning { font-size: 12px; background: var(--red-pale); color: var(--red); padding: 4px 12px; border-radius: 20px; }
.score-recommendation {
  background: var(--bg); border-radius: 8px; padding: 14px 18px;
  font-size: 14px; color: var(--text); text-align: left; margin-top: 12px;
}

/* ── Checklist ───────────────────────────────────────── */
.checklist-progress { margin-bottom: 24px; }
.progress-bar {
  height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin: 8px 0;
}
.progress-fill { height: 100%; background: var(--green); border-radius: 4px; transition: width .4s ease; }
.progress-text { font-size: 13px; color: var(--muted); text-align: right; }
.checklist-category { margin-bottom: 28px; }
.checklist-category h3 { margin-bottom: 14px; font-size: 15px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; font-weight: 700; }
.checklist-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 16px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--white); margin-bottom: 8px; cursor: pointer;
  transition: var(--transition);
}
.checklist-item:hover { border-color: var(--gold); }
.checklist-item.checked { background: var(--green-pale); border-color: var(--green); }
.checklist-item input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.checklist-item .item-text { font-size: 14px; font-weight: 500; color: var(--text); flex: 1; }
.checklist-item.checked .item-text { color: var(--green); text-decoration: line-through; }
.checklist-item .item-why { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── Guide ───────────────────────────────────────────── */
.guide-toc {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 20px 24px; margin-bottom: 32px;
}
.guide-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 12px; }
.guide-toc ol { padding-left: 18px; }
.guide-toc li { font-size: 14px; padding: 4px 0; }
.guide-toc a { color: var(--navy); }
.guide-toc a:hover { color: var(--gold); }
.guide-section { margin-bottom: 40px; scroll-margin-top: 80px; }
.guide-section h2 { padding-bottom: 10px; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.guide-callout {
  border-radius: 10px; padding: 18px 22px; margin: 20px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.guide-callout.info    { background: var(--blue-pale);   border-left: 4px solid var(--blue); }
.guide-callout.warning { background: var(--orange-pale); border-left: 4px solid var(--orange); }
.guide-callout.success { background: var(--green-pale);  border-left: 4px solid var(--green); }
.guide-callout.danger  { background: var(--red-pale);    border-left: 4px solid var(--red); }
.guide-callout .callout-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.guide-callout .callout-text { font-size: 14px; line-height: 1.6; }
.guide-callout .callout-text strong { display: block; margin-bottom: 4px; font-size: 14px; }
.guide-steps { counter-reset: step-counter; list-style: none; }
.guide-steps li {
  counter-increment: step-counter; padding: 18px 18px 18px 60px;
  border-radius: 10px; background: var(--white); border: 1px solid var(--border);
  margin-bottom: 12px; position: relative; font-size: 14px; line-height: 1.6;
}
.guide-steps li::before {
  content: counter(step-counter);
  position: absolute; left: 18px; top: 18px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.guide-steps li strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 15px; }
.dos-donts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .dos-donts { grid-template-columns: 1fr; } }
.dos, .donts { border-radius: 10px; padding: 18px; }
.dos   { background: var(--green-pale); }
.donts { background: var(--red-pale); }
.dos h4   { color: var(--green); margin-bottom: 10px; }
.donts h4 { color: var(--red);   margin-bottom: 10px; }
.dos ul, .donts ul { list-style: none; }
.dos li, .donts li { font-size: 13px; padding: 4px 0 4px 20px; position: relative; }
.dos li::before   { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.donts li::before { content: '✗'; position: absolute; left: 0; color: var(--red);   font-weight: 700; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer;
  transition: var(--transition); gap: 12px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 18px; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-answer { font-size: 14px; color: var(--muted); padding-bottom: 16px; display: none; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CTA Block ───────────────────────────────────────── */
.rc-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 40px;
  text-align: center; color: var(--white); margin: 48px 0;
}
.rc-cta-block h2 { color: var(--white); margin-bottom: 10px; }
.rc-cta-block p  { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 15px; }
.rc-cta-block .cta-stats {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-stat { text-align: center; }
.cta-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--gold-light); }
.cta-stat span   { font-size: 12px; color: rgba(255,255,255,.6); }

/* ── Assessment / Quiz ───────────────────────────────── */
.assessment-step { display: none; }
.assessment-step.active { display: block; }
.step-indicator {
  display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap;
}
.step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: var(--transition);
}
.step-dot.done    { background: var(--green); }
.step-dot.current { background: var(--gold); width: 24px; border-radius: 4px; }
.question-text { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.question-sub  { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.option-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.option-btn {
  padding: 14px 18px; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--white); text-align: left; cursor: pointer;
  transition: var(--transition); font-size: 14px; font-weight: 500;
  color: var(--text); display: flex; align-items: center; gap: 10px;
}
.option-btn:hover  { border-color: var(--gold); background: var(--gold-pale); }
.option-btn.selected { border-color: var(--navy); background: var(--navy); color: var(--white); }
.option-btn .opt-icon { font-size: 20px; flex-shrink: 0; }
.nav-btns { display: flex; gap: 12px; margin-top: 28px; }
.btn-nav-back {
  padding: 10px 20px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-nav-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-nav-next {
  padding: 10px 24px; border-radius: 8px; border: none;
  background: var(--navy); color: var(--white); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-nav-next:hover { background: var(--gold); }
.assessment-result {
  text-align: center; padding: 40px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.result-badge {
  display: inline-block; font-size: 13px; font-weight: 700;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 16px;
}

/* ── Footer ─────────────────────────────────────────── */
.rc-footer {
  background: var(--navy); color: rgba(255,255,255,.65);
  padding: 48px 24px 24px;
}
.rc-footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) { .rc-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .rc-footer-inner { grid-template-columns: 1fr; } }
.rc-footer-brand { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.rc-footer-brand span { color: var(--gold-light); }
.rc-footer-tagline { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.rc-footer-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 10px 20px;
  border-radius: 6px; transition: var(--transition);
}
.rc-footer-cta:hover { background: var(--gold-light); color: var(--white); }
.rc-footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 14px; }
.rc-footer ul { list-style: none; }
.rc-footer ul li { margin-bottom: 8px; }
.rc-footer ul a { font-size: 13px; color: rgba(255,255,255,.6); transition: var(--transition); }
.rc-footer ul a:hover { color: var(--gold-light); }
.rc-footer-bottom {
  max-width: var(--max-width); margin: 32px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap;
  font-size: 11px; color: rgba(255,255,255,.4);
}

/* ── Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin: 24px 0;
}
.stat-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; text-align: center;
}
.stat-box strong { display: block; font-size: 24px; font-weight: 800; color: var(--navy); }
.stat-box span   { font-size: 12px; color: var(--muted); }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}
.tag-navy   { background: rgba(13,35,64,.08); color: var(--navy); }
.tag-green  { background: var(--green-pale); color: var(--green); }
.tag-red    { background: var(--red-pale);   color: var(--red); }
.tag-gold   { background: var(--gold-pale);  color: var(--gold); border: 1px solid #fde68a; }

/* ── Mobile header adjustments ───────────────────────── */
@media (max-width: 600px) {
  .rc-header-nav a:not(.btn-get-funding) { display: none; }
  .rc-main { padding: 24px 16px 48px; }
  .rc-hero  { padding: 36px 16px; }
  .rc-cta-block { padding: 28px 18px; }
  .calc-inputs, .calc-results { padding: 20px; }
  .rc-card { padding: 18px; }
}
