/* Pathway Recovery — Main Stylesheet */
/* pr- prefix throughout — Cluster B */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --pr-indigo: #312E81;
  --pr-indigo-light: #4338CA;
  --pr-indigo-dark: #1E1B4B;
  --pr-coral: #F97316;
  --pr-coral-light: #FB923C;
  --pr-coral-dark: #EA580C;
  --pr-gray: #F9FAFB;
  --pr-gray-mid: #E5E7EB;
  --pr-gray-dark: #6B7280;
  --pr-white: #FFFFFF;
  --pr-text: #1F2937;
  --pr-text-light: #4B5563;
  --pr-font-heading: 'Space Grotesk', sans-serif;
  --pr-font-body: 'Work Sans', sans-serif;
  --pr-radius: 8px;
  --pr-max-width: 1200px;
  --pr-transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--pr-font-body); color: var(--pr-text); background: var(--pr-gray); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }

h1, h2, h3, h4, h5, h6 { font-family: var(--pr-font-heading); font-weight: 700; line-height: 1.2; color: var(--pr-indigo); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

a { color: var(--pr-coral); text-decoration: none; transition: color var(--pr-transition); }
a:hover { color: var(--pr-coral-dark); }
img { max-width: 100%; height: auto; display: block; }

.pr-container { max-width: var(--pr-max-width); margin: 0 auto; padding: 0 20px; }
.pr-section { padding: 80px 0; }
.pr-section--gray { background: var(--pr-gray); }
.pr-section--white { background: var(--pr-white); }
.pr-section__title { text-align: center; margin-bottom: 16px; }
.pr-section__subtitle { text-align: center; color: var(--pr-text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto 48px; }
.pr-text-center { text-align: center; }
.pr-mt-16 { margin-top: 16px; }
.pr-mt-24 { margin-top: 24px; }
.pr-mt-32 { margin-top: 32px; }
.pr-mt-48 { margin-top: 48px; }
.pr-ml-16 { margin-left: 16px; }
.pr-hidden { display: none !important; }
.pr-skip { position: absolute; top: -100px; left: 0; background: var(--pr-coral); color: #fff; padding: 8px 16px; z-index: 9999; }
.pr-skip:focus { top: 0; }

/* Gradient text */
.pr-gradient-text { background: linear-gradient(135deg, var(--pr-indigo), var(--pr-coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Animations */
/* opacity:0 removed - content visible by default for bots/no-JS */
.pr-animate { transition: opacity 0.6s ease, transform 0.6s ease; }
.pr-animate.pr-visible { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.pr-header { position: sticky; top: 0; z-index: 1000; background: var(--pr-indigo); box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.pr-header__inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--pr-max-width); margin: 0 auto; padding: 0 20px; height: 64px; }
.pr-header__logo { display: flex; align-items: center; }
.pr-logo-full { display: block; filter: brightness(10); }
.pr-logo-compact { display: none; filter: brightness(10); }
.pr-nav { display: flex; align-items: center; gap: 24px; }
.pr-nav__link { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; transition: color var(--pr-transition); }
.pr-nav__link:hover, .pr-nav__link.active { color: var(--pr-coral); }
.pr-nav__cta { background: var(--pr-coral); color: #fff !important; padding: 8px 20px; border-radius: var(--pr-radius); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.pr-nav__cta:hover { background: var(--pr-coral-dark); }
.pr-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.pr-hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: var(--pr-transition); transform-origin: center; }
.pr-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pr-hamburger.active span:nth-child(2) { opacity: 0; }
.pr-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .pr-logo-full { display: none; }
  .pr-logo-compact { display: block; }
  .pr-hamburger { display: block; }
  .pr-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--pr-indigo-dark); flex-direction: column; padding: 20px; gap: 16px; z-index: 999; }
  .pr-nav.active { display: flex; }
  .pr-nav__link { color: #fff; font-size: 1.1rem; }
}

/* ===== HERO ===== */
.pr-hero { position: relative; background: linear-gradient(135deg, var(--pr-indigo-dark) 0%, var(--pr-indigo) 50%, var(--pr-indigo-light) 100%); color: #fff; padding: 100px 0 80px; overflow: hidden; }
.pr-hero__bg { position: absolute; inset: 0; opacity: 0.08; background: radial-gradient(circle at 20% 50%, var(--pr-coral) 0%, transparent 50%), radial-gradient(circle at 80% 30%, var(--pr-indigo-light) 0%, transparent 40%); }
.pr-hero__content { position: relative; max-width: 700px; }
.pr-hero__title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 20px; }
.pr-hero__text { font-size: 1.2rem; opacity: 0.9; margin-bottom: 32px; line-height: 1.7; }
.pr-hero__cta { display: inline-block; background: var(--pr-coral); color: #fff !important; padding: 14px 32px; border-radius: var(--pr-radius); font-weight: 700; font-size: 1.1rem; transition: var(--pr-transition); animation: pr-pulse 2s infinite; }
.pr-hero__cta:hover { background: var(--pr-coral-dark); transform: translateY(-2px); }
@keyframes pr-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); } 50% { box-shadow: 0 0 0 12px rgba(249,115,22,0); } }
.pr-hero__search { display: flex; margin-top: 24px; background: rgba(255,255,255,0.15); border-radius: var(--pr-radius); overflow: hidden; max-width: 500px; }
.pr-hero__search input { flex: 1; border: none; background: transparent; color: #fff; padding: 12px 16px; font-size: 1rem; outline: none; }
.pr-hero__search input::placeholder { color: rgba(255,255,255,0.6); }
.pr-hero__search-btn { background: var(--pr-coral); color: #fff; border: none; padding: 12px 20px; font-weight: 600; cursor: pointer; text-decoration: none; display: flex; align-items: center; }

/* ===== STATS / TRUST BAR ===== */
.pr-stats { background: var(--pr-indigo-dark); padding: 24px 0; }
.pr-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; max-width: var(--pr-max-width); margin: 0 auto; padding: 0 20px; }
.pr-stats__number { font-family: var(--pr-font-heading); font-size: 2rem; font-weight: 700; color: var(--pr-coral); }
.pr-stats__label { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 4px; }
@media (max-width: 600px) { .pr-stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== WAVE DIVIDER ===== */
.pr-wave { line-height: 0; margin: -1px 0; }
.pr-wave svg { width: 100%; height: 60px; display: block; }
.pr-wave--flip { transform: scaleY(-1); }

/* ===== CARDS ===== */
.pr-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.pr-card { background: var(--pr-white); border-radius: var(--pr-radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform var(--pr-transition), box-shadow var(--pr-transition); text-decoration: none; color: inherit; display: block; }
.pr-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.pr-card__placeholder { height: 160px; display: flex; align-items: center; justify-content: center; }
.pr-card__placeholder span { font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,0.25); font-family: var(--pr-font-heading); }
.pr-card__body { padding: 20px; }
.pr-card__body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--pr-indigo); }
.pr-card__body h4 { font-size: 1rem; margin-bottom: 6px; color: var(--pr-indigo); }
.pr-card__rating { font-size: 0.85rem; margin-bottom: 8px; }
.pr-rating-num { font-weight: 700; color: var(--pr-coral); }
.pr-stars { color: #F59E0B; letter-spacing: 1px; }
.pr-card__location { font-size: 0.9rem; color: var(--pr-text-light); margin-bottom: 8px; }
.pr-card__desc { font-size: 0.9rem; color: var(--pr-text-light); line-height: 1.5; }
.pr-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pr-badge { display: inline-block; background: rgba(67,56,202,0.1); color: var(--pr-indigo-light); font-size: 0.75rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; }

/* ===== STATE MAP ===== */
.pr-state-map { max-width: 600px; margin: 0 auto; }
.pr-map-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; margin-bottom: 3px; }
.pr-map-cell { background: var(--pr-indigo); color: #fff; font-size: 0.7rem; font-weight: 600; text-align: center; padding: 6px 2px; border-radius: 3px; text-decoration: none; transition: var(--pr-transition); font-family: var(--pr-font-heading); }
.pr-map-cell:hover { background: var(--pr-coral); color: #fff; transform: scale(1.1); }
.pr-map-empty { background: transparent; }

/* ===== STATE GRID ===== */
.pr-states-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.pr-state-link { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--pr-white); border-radius: var(--pr-radius); border: 1px solid var(--pr-gray-mid); transition: var(--pr-transition); color: var(--pr-text); text-decoration: none; font-weight: 500; }
.pr-state-link:hover { border-color: var(--pr-coral); color: var(--pr-coral); transform: translateX(4px); }
.pr-state-link__count { font-size: 0.8rem; color: var(--pr-gray-dark); font-weight: 400; }
.pr-states-search { max-width: 400px; margin: 0 auto 24px; }
.pr-states-search input { width: 100%; padding: 12px 16px; border: 2px solid var(--pr-gray-mid); border-radius: var(--pr-radius); font-size: 1rem; outline: none; transition: var(--pr-transition); font-family: var(--pr-font-body); }
.pr-states-search input:focus { border-color: var(--pr-coral); }

/* ===== PATH STEPS ===== */
.pr-path { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pr-path__step { text-align: center; flex: 1; min-width: 180px; padding: 24px; }
.pr-path__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--pr-indigo); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 700; font-size: 1.2rem; font-family: var(--pr-font-heading); }
.pr-path__arrow { font-size: 1.5rem; color: var(--pr-gray-dark); }
@media (max-width: 600px) { .pr-path__arrow { display: none; } }

/* ===== PILLS ===== */
.pr-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pr-pill { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--pr-white); border: 1px solid var(--pr-gray-mid); border-radius: 30px; color: var(--pr-text); font-size: 0.9rem; font-weight: 500; transition: var(--pr-transition); text-decoration: none; }
.pr-pill:hover { border-color: var(--pr-coral); color: var(--pr-coral); background: rgba(249,115,22,0.05); }

/* ===== INSURANCE GRID ===== */
.pr-insurance-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.pr-insurance-badge { padding: 16px; background: var(--pr-white); border: 1px solid var(--pr-gray-mid); border-radius: var(--pr-radius); text-align: center; font-weight: 600; color: var(--pr-text); transition: var(--pr-transition); text-decoration: none; }
.pr-insurance-badge:hover { border-color: var(--pr-coral); color: var(--pr-coral); }

/* ===== CTA BLOCK ===== */
.pr-cta-block { text-align: center; background: linear-gradient(135deg, var(--pr-indigo-dark), var(--pr-indigo)); color: #fff; padding: 48px 32px; border-radius: 12px; }
.pr-cta-block h2 { color: #fff; margin-bottom: 16px; }
.pr-cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1.1rem; }
.pr-cta-triggers { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.pr-cta-triggers span { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.pr-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.pr-testimonial { background: var(--pr-white); border-radius: var(--pr-radius); padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.pr-testimonial__inner { display: flex; gap: 16px; }
.pr-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; font-family: var(--pr-font-heading); }
.pr-testimonial p { font-style: italic; color: var(--pr-text-light); line-height: 1.6; margin-bottom: 8px; }
.pr-testimonial cite { font-style: normal; font-weight: 600; color: var(--pr-indigo); font-size: 0.9rem; }

/* ===== FAQ ===== */
.pr-faq__item { border-bottom: 1px solid var(--pr-gray-mid); }
.pr-faq__q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 20px 0; font-size: 1.05rem; font-weight: 600; cursor: pointer; color: var(--pr-indigo); font-family: var(--pr-font-heading); list-style: none; }
.pr-faq__q::-webkit-details-marker { display: none; }
.pr-faq__arrow { font-size: 0.8rem; color: var(--pr-gray-dark); transition: transform var(--pr-transition); }
details[open] .pr-faq__arrow { transform: rotate(180deg); }
.pr-faq__a { padding: 0 0 20px; color: var(--pr-text-light); line-height: 1.7; }

/* ===== DETAIL / CENTER PAGES ===== */
.pr-detail-hero { background: linear-gradient(135deg, var(--pr-indigo-dark), var(--pr-indigo)); color: #fff; padding: 40px 0 32px; }
.pr-detail-hero h1 { color: #fff; margin: 16px 0 12px; }
.pr-detail-hero p { color: rgba(255,255,255,0.85); }
.pr-detail-meta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; font-size: 0.95rem; }
.pr-detail-rating { font-weight: 700; color: #F59E0B; }
.pr-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
@media (max-width: 768px) { .pr-detail-grid { grid-template-columns: 1fr; } }

/* Tabs */
.pr-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--pr-gray-mid); margin-bottom: 32px; }
.pr-tab { background: none; border: none; padding: 12px 20px; font-size: 0.95rem; font-weight: 600; cursor: pointer; color: var(--pr-gray-dark); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--pr-transition); font-family: var(--pr-font-heading); }
.pr-tab.active { color: var(--pr-coral); border-bottom-color: var(--pr-coral); }
.pr-tab:hover { color: var(--pr-coral); }
.pr-tab-content { display: none; }
.pr-tab-content.active { display: block; }
.pr-tab-content h2 { margin-bottom: 16px; font-size: 1.5rem; }
.pr-tab-content p { margin-bottom: 12px; line-height: 1.7; }
.pr-tab-content ul { margin: 12px 0; padding-left: 24px; }
.pr-tab-content li { margin-bottom: 8px; }

/* Sidebar */
.pr-sidebar { background: var(--pr-gray); border-radius: var(--pr-radius); padding: 24px; position: sticky; top: 80px; }
.pr-sidebar h3 { margin-bottom: 16px; font-size: 1.1rem; }
.pr-sidebar__item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--pr-gray-mid); font-size: 0.9rem; }
.pr-sidebar__item span { color: var(--pr-gray-dark); }
.pr-nearby-link { display: block; padding: 10px 0; border-bottom: 1px solid var(--pr-gray-mid); color: var(--pr-indigo); text-decoration: none; }
.pr-nearby-link:hover { color: var(--pr-coral); }
.pr-nearby-link small { display: block; color: var(--pr-gray-dark); font-size: 0.8rem; }

/* Reviews */
.pr-review { background: var(--pr-gray); padding: 20px; border-radius: var(--pr-radius); margin-bottom: 16px; border-left: 3px solid var(--pr-coral); }
.pr-review cite { display: block; margin-top: 8px; font-style: normal; font-weight: 600; color: var(--pr-indigo); font-size: 0.85rem; }

/* ===== BREADCRUMBS ===== */
.pr-breadcrumbs { font-size: 0.85rem; margin-bottom: 8px; }
.pr-breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; }
.pr-breadcrumbs a:hover { color: var(--pr-coral); }
.pr-breadcrumbs span { color: rgba(255,255,255,0.5); }
.pr-sep { margin: 0 6px; }
.pr-section--white .pr-breadcrumbs a { color: var(--pr-gray-dark); }
.pr-section--white .pr-breadcrumbs span { color: var(--pr-gray-dark); }

/* ===== ARTICLES ===== */
.pr-article { max-width: 800px; margin: 0 auto; }
.pr-article__progress { position: fixed; top: 64px; left: 0; height: 3px; background: var(--pr-coral); z-index: 999; width: 0; transition: width 0.1s; }
.pr-article__header { margin-bottom: 32px; }
.pr-article__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.pr-article__author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--pr-indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.pr-article__toc { background: var(--pr-gray); padding: 20px 24px; border-radius: var(--pr-radius); margin-bottom: 32px; }
.pr-article__toc h4 { margin-bottom: 12px; }
.pr-article__toc a { display: block; padding: 6px 0; color: var(--pr-indigo); font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid var(--pr-gray-mid); }
.pr-article__toc a:hover { color: var(--pr-coral); }
.pr-article__body h2 { margin: 32px 0 16px; }
.pr-article__body p { margin-bottom: 16px; line-height: 1.8; }
.pr-article__body ul { margin: 12px 0 16px; padding-left: 24px; }
.pr-article__body li { margin-bottom: 8px; line-height: 1.6; }

/* Share */
.pr-share { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--pr-gray-mid); }
.pr-share h4 { margin-bottom: 12px; }
.pr-share__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.pr-share-btn { padding: 8px 16px; border-radius: var(--pr-radius); background: var(--pr-gray); color: var(--pr-text); font-size: 0.85rem; font-weight: 500; transition: var(--pr-transition); text-decoration: none; }
.pr-share-btn:hover { background: var(--pr-coral); color: #fff; }

/* Related */
.pr-related { margin-top: 48px; }
.pr-related h3 { margin-bottom: 24px; }

/* ===== COMPARISON TABLE ===== */
.pr-comparison-table { border-radius: var(--pr-radius); overflow: hidden; border: 1px solid var(--pr-gray-mid); }
.pr-comp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.pr-comp-header { background: var(--pr-indigo); }
.pr-comp-header .pr-comp-cell { color: #fff; font-weight: 700; }
.pr-comp-cell { padding: 14px 16px; border-bottom: 1px solid var(--pr-gray-mid); font-size: 0.9rem; }
.pr-comp-row:nth-child(even) { background: var(--pr-gray); }
@media (max-width: 600px) { .pr-comp-row { grid-template-columns: 1fr; } .pr-comp-header { display: none; } .pr-comp-cell::before { content: attr(data-label); display: block; font-weight: 600; margin-bottom: 4px; } }

/* ===== BUTTONS ===== */
.pr-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: var(--pr-radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--pr-transition); text-decoration: none; border: none; font-family: var(--pr-font-body); }
.pr-btn--primary { background: var(--pr-coral); color: #fff; }
.pr-btn--primary:hover { background: var(--pr-coral-dark); color: #fff; }
.pr-btn--outline { background: transparent; color: var(--pr-coral); border: 2px solid var(--pr-coral); }
.pr-btn--outline:hover { background: var(--pr-coral); color: #fff; }
.pr-btn--block { display: flex; width: 100%; }
.pr-btn--large { padding: 16px 36px; font-size: 1.1rem; }

/* ===== FORM ===== */
.pr-form__group { margin-bottom: 20px; }
.pr-form__group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--pr-indigo); font-size: 0.9rem; }
.pr-form__group input, .pr-form__group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--pr-gray-mid); border-radius: var(--pr-radius); font-size: 1rem; outline: none; transition: var(--pr-transition); font-family: var(--pr-font-body); }
.pr-form__group input:focus, .pr-form__group textarea:focus { border-color: var(--pr-coral); }

/* ===== FOOTER ===== */
.pr-footer { background: var(--pr-indigo-dark); color: rgba(255,255,255,0.8); padding: 60px 0 24px; }
.pr-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: var(--pr-max-width); margin: 0 auto; padding: 0 20px; }
.pr-footer__brand p { font-size: 0.85rem; line-height: 1.6; margin-top: 8px; }
.pr-footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.pr-footer__col ul { list-style: none; }
.pr-footer__col li { margin-bottom: 8px; }
.pr-footer__col a { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; }
.pr-footer__col a:hover { color: var(--pr-coral); }
.pr-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); max-width: var(--pr-max-width); margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.pr-footer__bottom p { margin: 4px 0; }
@media (max-width: 768px) { .pr-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .pr-footer__grid { grid-template-columns: 1fr; } }

/* ===== BACK TO TOP ===== */
.pr-back-top { position: fixed; bottom: 100px; right: 20px; width: 44px; height: 44px; background: var(--pr-indigo); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; opacity: 0; visibility: hidden; transition: var(--pr-transition); z-index: 900; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.pr-back-top.pr-show { opacity: 1; visibility: visible; }
.pr-back-top:hover { background: var(--pr-coral); color: #fff; }

/* ===== MOBILE CTA BAR ===== */
.pr-mobile-cta { display: none; }
@media (max-width: 768px) {
  .pr-mobile-cta { display: block; position: fixed; bottom: 56px; left: 0; right: 0; z-index: 800; background: var(--pr-coral); text-align: center; }
  .pr-mobile-cta a { display: block; color: #fff; padding: 12px; font-weight: 700; font-size: 0.95rem; text-decoration: none; }
}

/* ===== BOTTOM NAV ===== */
.pr-bottom-nav { display: none; }
@media (max-width: 768px) {
  .pr-bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: var(--pr-white); border-top: 1px solid var(--pr-gray-mid); z-index: 900; justify-content: space-around; padding: 6px 0; }
  .pr-bottom-nav__btn { display: flex; flex-direction: column; align-items: center; font-size: 0.7rem; color: var(--pr-gray-dark); text-decoration: none; padding: 4px 12px; }
  .pr-bottom-nav__btn svg { width: 22px; height: 22px; margin-bottom: 2px; }
  .pr-bottom-nav__btn--call { color: var(--pr-coral); font-weight: 700; }
  body { padding-bottom: 120px; }
}

/* ===== METRICS ===== */
.pr-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.pr-metric__number { font-family: var(--pr-font-heading); font-size: 2.5rem; font-weight: 700; color: var(--pr-coral); }
.pr-metric__label { color: var(--pr-text-light); margin-top: 8px; }

/* ===== BLOG COMPONENTS ===== */

/* Article layout with sidebar TOC */
.pr-article-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 968px) { .pr-article-layout { grid-template-columns: 1fr; } }

/* Sticky TOC sidebar */
.pr-toc-sidebar { position: sticky; top: 80px; align-self: start; }
.pr-toc-sidebar h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pr-gray-dark); margin-bottom: 12px; }
.pr-toc-sidebar a { display: block; padding: 6px 0 6px 12px; color: var(--pr-text-light); font-size: 0.85rem; text-decoration: none; border-left: 2px solid var(--pr-gray-mid); transition: var(--pr-transition); }
.pr-toc-sidebar a:hover, .pr-toc-sidebar a.active { color: var(--pr-coral); border-left-color: var(--pr-coral); }
@media (max-width: 968px) { .pr-toc-sidebar { display: none; } }

/* Mobile TOC collapsible */
.pr-toc-mobile { display: none; background: var(--pr-gray); border-radius: var(--pr-radius); margin-bottom: 24px; }
.pr-toc-mobile summary { padding: 14px 20px; font-weight: 600; cursor: pointer; color: var(--pr-indigo); font-family: var(--pr-font-heading); font-size: 0.95rem; }
.pr-toc-mobile .pr-toc-links { padding: 0 20px 14px; }
.pr-toc-mobile .pr-toc-links a { display: block; padding: 6px 0; color: var(--pr-text-light); font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid var(--pr-gray-mid); }
.pr-toc-mobile .pr-toc-links a:hover { color: var(--pr-coral); }
@media (max-width: 968px) { .pr-toc-mobile { display: block; } }

/* Share buttons top + bottom */
.pr-share-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin: 16px 0; }
.pr-share-bar__label { font-size: 0.8rem; color: var(--pr-gray-dark); font-weight: 600; margin-right: 4px; }
.pr-share-icon { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--pr-gray); color: var(--pr-text-light); font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: var(--pr-transition); }
.pr-share-icon:hover { background: var(--pr-coral); color: #fff; }

/* Author box */
.pr-author-box { display: flex; gap: 20px; padding: 24px; background: var(--pr-gray); border-radius: var(--pr-radius); margin-top: 40px; }
.pr-author-box__avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--pr-indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; font-family: var(--pr-font-heading); }
.pr-author-box__info h4 { color: var(--pr-indigo); margin-bottom: 4px; font-size: 1rem; }
.pr-author-box__info .pr-credentials { font-size: 0.85rem; color: var(--pr-coral); font-weight: 600; margin-bottom: 8px; }
.pr-author-box__info p { font-size: 0.9rem; color: var(--pr-text-light); line-height: 1.6; }
@media (max-width: 480px) { .pr-author-box { flex-direction: column; align-items: center; text-align: center; } }

/* Medically reviewed badge */
.pr-reviewed-badge { display: inline-flex; align-items: center; gap: 8px; background: #ECFDF5; border: 1px solid #A7F3D0; border-radius: var(--pr-radius); padding: 8px 16px; font-size: 0.85rem; color: #065F46; margin-top: 12px; }
.pr-reviewed-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Inline CTA */
.pr-inline-cta { background: linear-gradient(135deg, var(--pr-indigo-dark), var(--pr-indigo)); color: #fff; padding: 28px 32px; border-radius: 12px; margin: 32px 0; text-align: center; }
.pr-inline-cta h3 { color: #fff; margin-bottom: 8px; font-size: 1.2rem; }
.pr-inline-cta p { color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 0.95rem; }
.pr-inline-cta .pr-btn { font-size: 1rem; }

/* Related Centers sidebar/section */
.pr-related-centers { margin-top: 40px; padding: 24px; background: var(--pr-gray); border-radius: var(--pr-radius); }
.pr-related-centers h3 { margin-bottom: 16px; font-size: 1.1rem; }
.pr-center-mini { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--pr-gray-mid); text-decoration: none; color: inherit; }
.pr-center-mini:last-child { border-bottom: none; }
.pr-center-mini:hover h4 { color: var(--pr-coral); }
.pr-center-mini__icon { width: 44px; height: 44px; border-radius: var(--pr-radius); background: var(--pr-indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.pr-center-mini h4 { font-size: 0.9rem; margin-bottom: 2px; transition: color var(--pr-transition); }
.pr-center-mini small { color: var(--pr-gray-dark); font-size: 0.8rem; }

/* Article meta line */
.pr-article-meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; font-size: 0.85rem; color: var(--pr-gray-dark); margin-top: 12px; }
.pr-article-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* Pull quote */
.pr-pullquote { border-left: 4px solid var(--pr-coral); padding: 16px 24px; margin: 28px 0; background: rgba(249,115,22,0.04); font-size: 1.1rem; font-style: italic; color: var(--pr-indigo); line-height: 1.6; }

/* Key takeaway box */
.pr-key-takeaway { background: rgba(67,56,202,0.06); border: 1px solid rgba(67,56,202,0.15); border-radius: var(--pr-radius); padding: 20px 24px; margin-bottom: 28px; }
.pr-key-takeaway h4 { color: var(--pr-indigo); margin-bottom: 10px; font-size: 0.95rem; }
.pr-key-takeaway ul { padding-left: 20px; margin: 0; }
.pr-key-takeaway li { margin-bottom: 6px; font-size: 0.9rem; color: var(--pr-text-light); line-height: 1.5; }

/* Sources section */
.pr-sources { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--pr-gray-mid); }
.pr-sources h3 { font-size: 1rem; margin-bottom: 12px; }
.pr-sources ol { padding-left: 20px; }
.pr-sources li { font-size: 0.85rem; color: var(--pr-text-light); margin-bottom: 6px; line-height: 1.5; }
.pr-sources a { color: var(--pr-coral); word-break: break-all; }

/* Blog index enhancements */
.pr-blog-hero { background: linear-gradient(135deg, var(--pr-indigo-dark), var(--pr-indigo)); color: #fff; padding: 48px 0 40px; margin-bottom: 0; }
.pr-blog-hero h1 { color: #fff; margin-bottom: 8px; }
.pr-blog-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.pr-blog-stats { display: flex; gap: 24px; margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.pr-category-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.pr-category-pill { padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 500; background: var(--pr-gray); color: var(--pr-text); border: 1px solid var(--pr-gray-mid); cursor: pointer; transition: var(--pr-transition); text-decoration: none; }
.pr-category-pill:hover, .pr-category-pill.active { background: var(--pr-coral); color: #fff; border-color: var(--pr-coral); }
.pr-featured-article { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: var(--pr-white); border-radius: var(--pr-radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); margin-bottom: 40px; text-decoration: none; color: inherit; }
.pr-featured-article__img { background: linear-gradient(135deg, var(--pr-indigo), var(--pr-indigo-light)); min-height: 260px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-size: 4rem; font-weight: 700; }
.pr-featured-article__body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.pr-featured-article__body .pr-badge { margin-bottom: 12px; }
.pr-featured-article__body h2 { font-size: 1.5rem; margin-bottom: 12px; }
.pr-featured-article__body p { color: var(--pr-text-light); line-height: 1.6; margin-bottom: 16px; }
@media (max-width: 768px) { .pr-featured-article { grid-template-columns: 1fr; } .pr-featured-article__img { min-height: 180px; } }

/* Article card enhanced */
.pr-article-card { background: var(--pr-white); border-radius: var(--pr-radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform var(--pr-transition), box-shadow var(--pr-transition); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.pr-article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.pr-article-card__img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: rgba(255,255,255,0.2); font-weight: 700; }
.pr-article-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pr-article-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--pr-indigo); }
.pr-article-card__body p { font-size: 0.9rem; color: var(--pr-text-light); line-height: 1.5; flex: 1; margin-bottom: 12px; }
.pr-article-card__meta { font-size: 0.8rem; color: var(--pr-gray-dark); display: flex; justify-content: space-between; align-items: center; }
.pr-article-card__category { font-size: 0.75rem; font-weight: 600; color: var(--pr-indigo-light); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }

/* ===== PRINT ===== */
@media print { .pr-header, .pr-footer, .pr-bottom-nav, .pr-mobile-cta, .pr-back-top { display: none; } body { padding: 0; } }
.pr-skip:focus, *:focus-visible { outline: 2px solid var(--pr-coral); outline-offset: 2px; }

/* Insurance logos bar */
.pr-insurance-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; padding: 2rem 0; }
.pr-insurance-bar img { height: 32px; width: auto; opacity: 0.7; transition: opacity 0.2s; }
.pr-insurance-bar img:hover { opacity: 1; }

/* Center detail photo */
.pr-detail-photo { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; }
.pr-detail-main { flex: 1; min-width: 0; }

/* Badges */
.pr-badge { display: inline-block; padding: 0.375rem 0.75rem; border-radius: 6px; font-size: 0.875rem; font-weight: 600; margin-right: 0.5rem; margin-bottom: 0.5rem; }
.pr-badge--accredited { background: #ECFDF5; color: #065F46; }
.pr-badge--founded { background: #EFF6FF; color: #1E40AF; }
.pr-badge--length { background: #FFF7ED; color: #9A3412; }

/* Amenities grid */
.pr-amenities { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pr-amenity { background: var(--pr-gray); padding: 0.5rem 0.75rem; border-radius: 8px; font-size: 0.875rem; }

/* Checklist */
.pr-checklist { list-style: none; padding: 0; columns: 2; }
.pr-checklist li { padding: 0.25rem 0; padding-left: 1.5rem; position: relative; }
.pr-checklist li::before { content: "✓"; color: var(--pr-coral); position: absolute; left: 0; font-weight: 700; }

/* Insurance logos on detail */
.pr-insurance-logos { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.pr-insurance-logo { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; font-size: 0.75rem; }

/* Sticky CTA */
.pr-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 0.75rem 1rem; box-shadow: 0 -2px 8px rgba(0,0,0,0.1); text-align: center; z-index: 100; display: none; }
@media (max-width: 768px) { .pr-sticky-cta { display: block; } }


/* === sirius hero-pro v1 (pr) === */
.pr-hero-pro {
  position: relative;
  padding: 76px 24px 56px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 40%, #ffffff 100%);
  overflow: hidden;
}
.pr-hero-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0% 0%, #1E3A5F1a, transparent 40%),
                    radial-gradient(circle at 100% 50%, #1E3A5F1a, transparent 50%);
  pointer-events: none;
}
.pr-hero-pro__inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.pr-hero-pro__crumb {
  display: flex; gap: 6px; font-size: .84rem; color: #475569;
  margin: 0 0 18px; list-style: none; padding: 0; flex-wrap: wrap;
}
.pr-hero-pro__crumb li { display: inline-flex; align-items: center; }
.pr-hero-pro__crumb li:not(:last-child)::after {
  content: "›"; margin: 0 6px; color: #94a3b8;
}
.pr-hero-pro__crumb a { color: #1E3A5F; text-decoration: none; font-weight: 500; }
.pr-hero-pro__crumb a:hover { text-decoration: underline; }
.pr-hero-pro__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: #fff; border: 1px solid #1E3A5F55;
  border-radius: 999px; font-size: .78rem; font-weight: 700; color: #15294a;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.pr-hero-pro__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #dc2626;
  animation: pr-hero-pulse 1.8s infinite;
}
@keyframes pr-hero-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.65); }
  50%     { box-shadow: 0 0 0 7px rgba(220,38,38,0); }
}
.pr-hero-pro__h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem); font-weight: 700;
  color: #0f172a; margin: 0 0 14px; line-height: 1.15; letter-spacing: -.01em;
}
.pr-hero-pro__sub {
  font-size: 1.05rem; line-height: 1.6; color: #334155;
  margin: 0 0 22px; max-width: 56ch;
}
.pr-hero-pro__actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 0 0 18px;
}
.pr-hero-pro__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; background: linear-gradient(135deg, #1E3A5F, #15294a);
  color: #fff !important; border-radius: 12px; font-weight: 700; font-size: 1.05rem;
  text-decoration: none; box-shadow: 0 6px 18px #1E3A5F4d;
  transition: all .2s ease; white-space: nowrap;
}
.pr-hero-pro__cta:hover {
  transform: translateY(-2px); box-shadow: 0 10px 26px #1E3A5F66;
  background: linear-gradient(135deg, #15294a, #15294a);
}
.pr-hero-pro__cta-2 {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; background: #fff; color: #15294a !important;
  border: 2px solid #1E3A5F; border-radius: 12px; font-weight: 700; font-size: .98rem;
  text-decoration: none; transition: all .15s ease;
}
.pr-hero-pro__cta-2:hover { background: #1E3A5F11; transform: translateY(-1px); }
.pr-hero-pro__trust {
  display: flex; gap: 18px; flex-wrap: wrap; font-size: .82rem; color: #15294a;
}
.pr-hero-pro__trust span {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600;
}
.pr-hero-pro__trust svg { width: 14px; height: 14px; color: #1E3A5F; }
.pr-hero-pro__card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
  padding: 26px 28px; box-shadow: 0 10px 35px rgba(15,23,42,.08);
}
.pr-hero-pro__card-title {
  font-size: .78rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px;
}
.pr-hero-pro__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 0 0 20px; padding: 0 0 18px; border-bottom: 1px solid #f1f5f9;
}
.pr-hero-pro__stat { text-align: center; }
.pr-hero-pro__stat-num {
  display: block; font-size: 2.1rem; font-weight: 700; color: #1E3A5F;
  line-height: 1; margin-bottom: 4px;
}
.pr-hero-pro__stat-label {
  display: block; font-size: .75rem; color: #64748b; font-weight: 600;
  letter-spacing: .02em;
}
.pr-hero-pro__accred { display: flex; flex-direction: column; gap: 10px; }
.pr-hero-pro__accred-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: #334155; font-weight: 600;
}
.pr-hero-pro__accred-item svg {
  width: 20px; height: 20px; color: #1E3A5F; flex-shrink: 0;
}
@media (max-width: 900px) {
  .pr-hero-pro { padding: 72px 18px 36px; }
  .pr-hero-pro__inner { grid-template-columns: 1fr; gap: 30px; }
  .pr-hero-pro__h1 { font-size: 1.65rem; }
  .pr-hero-pro__sub { font-size: .98rem; }
  .pr-hero-pro__stat-num { font-size: 1.6rem; }
  .pr-hero-pro__cta { padding: 12px 20px; font-size: .98rem; }
}
@media (max-width: 480px) {
  .pr-hero-pro__actions { flex-direction: column; align-items: stretch; }
  .pr-hero-pro__cta, .pr-hero-pro__cta-2 { width: 100%; }
}
/* === /sirius hero-pro v1 (pr) === */
