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

@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: hidden;
}

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;
}

/* ===== HEADER ===== */
.pr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pr-indigo);
  padding: 0;
  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;
  gap: 10px;
  color: var(--pr-white);
  font-family: var(--pr-font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
}

.pr-header__logo svg { height: 36px; width: auto; }

.pr-nav { display: flex; align-items: center; gap: 8px; }

.pr-nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--pr-radius);
  transition: all var(--pr-transition);
  text-decoration: none;
}

.pr-nav__link:hover { color: var(--pr-white); background: rgba(255,255,255,0.1); }

.pr-nav__cta {
  background: var(--pr-coral);
  color: var(--pr-white) !important;
  padding: 10px 22px;
  border-radius: var(--pr-radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--pr-transition);
}

.pr-nav__cta:hover { background: var(--pr-coral-dark); color: var(--pr-white); transform: translateY(-1px); }

.pr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pr-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pr-white);
  border-radius: 2px;
  transition: all var(--pr-transition);
}

/* ===== HERO ===== */
.pr-hero {
  position: relative;
  background: linear-gradient(135deg, var(--pr-indigo) 0%, var(--pr-indigo-dark) 40%, var(--pr-coral) 100%);
  padding: 100px 0 120px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.pr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.pr-hero__title {
  color: var(--pr-white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.pr-hero__text {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.pr-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pr-coral);
  color: var(--pr-white);
  padding: 16px 36px;
  border-radius: var(--pr-radius);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--pr-font-heading);
  text-decoration: none;
  transition: all var(--pr-transition);
  border: 2px solid transparent;
}

.pr-hero__cta:hover {
  background: var(--pr-white);
  color: var(--pr-coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Floating shapes */
.pr-hero__shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.pr-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--pr-white);
}

.pr-shape--1 { width: 300px; height: 300px; top: -60px; right: -40px; animation: pr-float 8s ease-in-out infinite; }
.pr-shape--2 { width: 180px; height: 180px; bottom: -30px; left: 10%; animation: pr-float 6s ease-in-out infinite 1s; }
.pr-shape--3 { width: 80px; height: 80px; top: 30%; right: 20%; animation: pr-float 5s ease-in-out infinite 2s; }
.pr-shape--4 { width: 50px; height: 50px; top: 60%; left: 30%; animation: pr-float 7s ease-in-out infinite 0.5s; }
.pr-shape--5 { width: 120px; height: 120px; bottom: 20%; right: 35%; animation: pr-float 9s ease-in-out infinite 3s; }
.pr-shape--6 { width: 40px; height: 40px; top: 20%; left: 50%; animation: pr-float 4s ease-in-out infinite 1.5s; background: var(--pr-coral); opacity: 0.2; }
.pr-shape--7 { width: 60px; height: 60px; bottom: 40%; right: 10%; animation: pr-float 6s ease-in-out infinite 2.5s; background: var(--pr-coral); opacity: 0.15; }

@keyframes pr-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

/* ===== STATS BAR ===== */
.pr-stats {
  background: var(--pr-white);
  padding: 40px 0;
  border-bottom: 3px solid var(--pr-coral);
}

.pr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.pr-stats__number {
  font-family: var(--pr-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pr-coral);
  line-height: 1;
}

.pr-stats__label {
  font-size: 0.9rem;
  color: var(--pr-text-light);
  margin-top: 6px;
}

/* ===== CARDS ===== */
.pr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pr-card {
  background: var(--pr-white);
  border-radius: var(--pr-radius);
  overflow: hidden;
  border-top: 3px solid var(--pr-coral);
  transition: transform var(--pr-transition);
}

.pr-card:hover { transform: translateY(-4px); }

.pr-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--pr-gray-mid);
}

.pr-card__body { padding: 20px; }

.pr-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--pr-indigo);
}

.pr-card__title a { color: var(--pr-indigo); text-decoration: none; }
.pr-card__title a:hover { color: var(--pr-coral); }

.pr-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--pr-text-light);
  margin-bottom: 10px;
}

.pr-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--pr-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pr-coral);
}

.pr-card__desc {
  font-size: 0.92rem;
  color: var(--pr-text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.pr-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

.pr-tag {
  display: inline-block;
  background: var(--pr-gray);
  color: var(--pr-text-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

.pr-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pr-coral);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== YOUR PATH (3-step) ===== */
.pr-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.pr-path__step {
  text-align: center;
  padding: 24px;
  flex: 1;
  min-width: 200px;
}

.pr-path__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pr-coral);
  color: var(--pr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: var(--pr-font-heading);
  font-weight: 700;
  margin: 0 auto 16px;
}

.pr-path__arrow {
  font-size: 2rem;
  color: var(--pr-coral);
  flex-shrink: 0;
  margin-top: -20px;
}

.pr-path__title { font-size: 1.2rem; margin-bottom: 8px; }
.pr-path__text { font-size: 0.92rem; color: var(--pr-text-light); max-width: 240px; margin: 0 auto; }

/* ===== TREATMENT PILLS (horizontal scroll) ===== */
.pr-pills {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  scrollbar-width: thin;
}

.pr-pills::-webkit-scrollbar { height: 4px; }
.pr-pills::-webkit-scrollbar-thumb { background: var(--pr-coral); border-radius: 4px; }

.pr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--pr-white);
  border: 2px solid var(--pr-gray-mid);
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pr-indigo);
  white-space: nowrap;
  scroll-snap-align: start;
  transition: all var(--pr-transition);
  text-decoration: none;
  flex-shrink: 0;
}

.pr-pill:hover {
  border-color: var(--pr-coral);
  color: var(--pr-coral);
  transform: translateY(-2px);
}

/* ===== STATES SEARCHABLE A-Z ===== */
.pr-states-search {
  max-width: 400px;
  margin: 0 auto 32px;
}

.pr-states-search input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--pr-gray-mid);
  border-radius: var(--pr-radius);
  font-size: 1rem;
  font-family: var(--pr-font-body);
  transition: border-color var(--pr-transition);
  outline: none;
}

.pr-states-search input:focus { border-color: var(--pr-coral); }

.pr-states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

.pr-state-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--pr-indigo);
  font-weight: 500;
  border-radius: var(--pr-radius);
  transition: all var(--pr-transition);
  font-size: 0.92rem;
  text-decoration: none;
}

.pr-state-link:hover { background: var(--pr-coral); color: var(--pr-white); }

.pr-state-link__count {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--pr-text-light);
  font-weight: 400;
}

.pr-state-link:hover .pr-state-link__count { color: rgba(255,255,255,0.8); }

/* ===== SUCCESS METRICS ===== */
.pr-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.pr-metric__number {
  font-family: var(--pr-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pr-indigo);
  line-height: 1;
}

.pr-metric__label {
  font-size: 1rem;
  color: var(--pr-text-light);
  margin-top: 8px;
}

/* ===== INSURANCE BADGES ===== */
.pr-insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pr-insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--pr-white);
  border: 1px solid var(--pr-gray-mid);
  border-radius: var(--pr-radius);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--pr-text);
  text-decoration: none;
  transition: all var(--pr-transition);
}

.pr-insurance-badge:hover { border-color: var(--pr-coral); color: var(--pr-coral); }

/* ===== FAQ ===== */
.pr-faq { max-width: 800px; margin: 0 auto; }

.pr-faq__item {
  border-bottom: 1px solid var(--pr-gray-mid);
}

.pr-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--pr-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pr-indigo);
  text-align: left;
}

.pr-faq__q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--pr-coral);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--pr-transition);
}

.pr-faq__item.active .pr-faq__q::after { content: '−'; }

.pr-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.pr-faq__item.active .pr-faq__a { max-height: 500px; }

.pr-faq__a p { padding: 0 0 20px; color: var(--pr-text-light); line-height: 1.7; }

/* ===== BOLD CTA SECTION ===== */
.pr-cta-section {
  background: linear-gradient(135deg, var(--pr-indigo) 0%, var(--pr-coral) 100%);
  padding: 80px 0;
  text-align: center;
}

.pr-cta-section h2 { color: var(--pr-white); margin-bottom: 16px; }
.pr-cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 32px; }

.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--pr-radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--pr-font-heading);
  text-decoration: none;
  transition: all var(--pr-transition);
  border: none;
  cursor: pointer;
}

.pr-btn--primary { background: var(--pr-coral); color: var(--pr-white); }
.pr-btn--primary:hover { background: var(--pr-coral-dark); color: var(--pr-white); transform: translateY(-2px); }

.pr-btn--secondary { background: var(--pr-white); color: var(--pr-indigo); }
.pr-btn--secondary:hover { background: var(--pr-gray); transform: translateY(-2px); }

.pr-btn--outline { background: transparent; color: var(--pr-white); border: 2px solid var(--pr-white); }
.pr-btn--outline:hover { background: var(--pr-white); color: var(--pr-indigo); }

.pr-btn--large { padding: 16px 40px; font-size: 1.1rem; }

/* ===== FOOTER ===== */
.pr-footer {
  background: var(--pr-indigo-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 100px;
}

.pr-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.pr-footer__brand { font-size: 0.92rem; line-height: 1.7; }
.pr-footer__brand a { color: var(--pr-white); font-family: var(--pr-font-heading); font-weight: 700; font-size: 1.2rem; text-decoration: none; display: block; margin-bottom: 12px; }

.pr-footer__links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.pr-footer__links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none; }
.pr-footer__links a:hover { color: var(--pr-coral); }

.pr-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== BOTTOM NAV (Mobile) ===== */
.pr-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--pr-white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  padding: 8px 16px env(safe-area-inset-bottom);
}

.pr-bottom-nav__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.pr-bottom-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 16px;
  border-radius: var(--pr-radius);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pr-text-light);
  transition: all var(--pr-transition);
  flex: 1;
  text-align: center;
}

.pr-bottom-nav__btn svg { width: 22px; height: 22px; }

.pr-bottom-nav__btn--call {
  background: var(--pr-coral);
  color: var(--pr-white);
  border-radius: 24px;
}

/* ===== BREADCRUMBS ===== */
.pr-breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--pr-text-light);
}

.pr-breadcrumbs a { color: var(--pr-coral); text-decoration: none; }
.pr-breadcrumbs span { margin: 0 6px; }

/* ===== LOAD MORE ===== */
.pr-load-more {
  text-align: center;
  margin-top: 40px;
}

/* ===== CENTER DETAIL PAGE ===== */
.pr-detail-hero {
  background: linear-gradient(135deg, var(--pr-indigo) 0%, var(--pr-indigo-dark) 100%);
  padding: 48px 0;
  color: var(--pr-white);
}

.pr-detail-hero h1 { color: var(--pr-white); margin-bottom: 12px; font-size: clamp(1.6rem,4vw,2.5rem); }

.pr-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}

.pr-detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pr-coral);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--pr-font-heading);
}

.pr-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--pr-gray-mid);
  margin-bottom: 32px;
  overflow-x: auto;
}

.pr-tab {
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pr-text-light);
  white-space: nowrap;
  transition: all var(--pr-transition);
  font-family: var(--pr-font-body);
  margin-bottom: -2px;
}

.pr-tab:hover { color: var(--pr-indigo); }
.pr-tab.active { color: var(--pr-coral); border-bottom-color: var(--pr-coral); }

.pr-tab-content { display: none; }
.pr-tab-content.active { display: block; }

.pr-tab-content p { margin-bottom: 16px; line-height: 1.7; color: var(--pr-text-light); }

.pr-sidebar {
  background: var(--pr-white);
  border-radius: var(--pr-radius);
  border-top: 3px solid var(--pr-coral);
  padding: 24px;
}

.pr-sidebar h3 { font-size: 1rem; margin-bottom: 16px; }

.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:last-child { border-bottom: none; }

/* ===== ARTICLE PAGE ===== */
.pr-article { max-width: 780px; margin: 0 auto; }

.pr-article__progress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 3px;
  background: var(--pr-coral);
  z-index: 999;
  transition: width 0.1s linear;
  width: 0;
}

.pr-article__header { margin-bottom: 40px; }

.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: var(--pr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--pr-font-heading);
}

.pr-article__toc {
  background: var(--pr-gray);
  padding: 20px 24px;
  border-radius: var(--pr-radius);
  margin-bottom: 32px;
  border-left: 3px solid var(--pr-coral);
}

.pr-article__toc h4 { margin-bottom: 12px; font-size: 0.95rem; }
.pr-article__toc a { display: block; padding: 4px 0; color: var(--pr-indigo); font-size: 0.9rem; }
.pr-article__toc a:hover { color: var(--pr-coral); }

.pr-article__body h2 { margin: 40px 0 16px; }
.pr-article__body h3 { margin: 32px 0 12px; }
.pr-article__body p { margin-bottom: 16px; line-height: 1.8; color: var(--pr-text-light); }
.pr-article__body ul, .pr-article__body ol { margin: 0 0 16px 24px; color: var(--pr-text-light); line-height: 1.8; }

.pr-article__share {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--pr-gray-mid);
}

.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;
  text-decoration: none;
  transition: all var(--pr-transition);
}

.pr-share-btn:hover { background: var(--pr-coral); color: var(--pr-white); }

/* ===== COMPARISON PAGE ===== */
.pr-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.pr-comparison-table th {
  background: var(--pr-indigo);
  color: var(--pr-white);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--pr-font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

.pr-comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--pr-gray-mid);
  font-size: 0.9rem;
}

.pr-comparison-table tr:nth-child(even) td { background: var(--pr-gray); }

/* ===== CONTACT FORM ===== */
.pr-form { max-width: 600px; margin: 0 auto; }

.pr-form__group { margin-bottom: 20px; }

.pr-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--pr-indigo);
}

.pr-form__input, .pr-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--pr-gray-mid);
  border-radius: var(--pr-radius);
  font-size: 1rem;
  font-family: var(--pr-font-body);
  transition: border-color var(--pr-transition);
  outline: none;
}

.pr-form__input:focus, .pr-form__textarea:focus { border-color: var(--pr-coral); }
.pr-form__textarea { min-height: 120px; resize: vertical; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pr-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--pr-indigo); flex-direction: column; padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .pr-nav.active { display: flex; }
  .pr-hamburger { display: flex; }
  .pr-hero { padding: 60px 0 80px; min-height: auto; }
  .pr-hero__title { font-size: 2rem; }
  .pr-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pr-card-grid { grid-template-columns: 1fr; }
  .pr-path { flex-direction: column; }
  .pr-path__arrow { transform: rotate(90deg); margin: 0; }
  .pr-metrics { grid-template-columns: 1fr; gap: 24px; }
  .pr-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .pr-bottom-nav { display: flex; }
  .pr-footer { padding-bottom: 120px; }
  .pr-section { padding: 48px 0; }
  .pr-container { padding: 0 16px; }
  .pr-detail-hero { padding: 32px 0; }
  .pr-tabs { gap: 0; }
  .pr-tab { padding: 12px 16px; font-size: 0.85rem; }
  .pr-comparison-table { display: block; overflow-x: auto; }
  .pr-article__share { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .pr-states-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SKIP LINK ===== */
.pr-skip { position: absolute; top: -100px; left: 0; background: var(--pr-coral); color: var(--pr-white); padding: 12px 24px; z-index: 10000; font-weight: 600; }
.pr-skip:focus { top: 0; }

/* ===== STATE PAGE ===== */
.pr-state-hero {
  background: linear-gradient(135deg, var(--pr-indigo) 0%, var(--pr-indigo-dark) 100%);
  padding: 48px 0;
  color: var(--pr-white);
}
.pr-state-hero h1 { color: var(--pr-white); }
.pr-state-hero p { color: rgba(255,255,255,0.85); margin-top: 12px; font-size: 1.05rem; }

.pr-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.pr-city-link {
  display: block;
  padding: 10px 16px;
  color: var(--pr-indigo);
  font-weight: 500;
  border-radius: var(--pr-radius);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all var(--pr-transition);
}

.pr-city-link:hover { background: var(--pr-coral); color: var(--pr-white); }

/* Utility */
.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-mb-16 { margin-bottom: 16px; }
.pr-mb-24 { margin-bottom: 24px; }
.pr-hidden { display: none; }
