/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--motion-duration) var(--motion-easing);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(206,37,35,0.3);
}
.btn--primary:hover {
  background: var(--red-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206,37,35,0.4);
}
.btn--white {
  background: var(--white);
  color: var(--red);
}
.btn--white:hover {
  background: var(--g50);
  color: var(--red-dk);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--g900);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--g800);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Button shine effect */
.btn--primary::after,
.btn--white::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  animation: btn-shine 4s infinite;
  pointer-events: none;
}
@keyframes btn-shine {
  0%, 100% { left: -75%; }
  20% { left: 125%; }
  21%, 99% { left: 125%; }
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--motion-duration) var(--motion-easing);
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.card__body {
  padding: 1.5rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border: 2px solid var(--g200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--g800);
  transition: all var(--motion-duration) var(--motion-easing);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--g800);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--g900);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--g500);
  line-height: 1.5;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}
.service-card__link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

/* ===== GRID ===== */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
  padding: 1.25rem 0;
}
.trust-bar__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--g700);
  white-space: nowrap;
}
.trust-bar__item svg {
  width: 20px;
  height: 20px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 2px solid var(--g200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--motion-duration);
}
.faq-item.open {
  border-color: var(--blue);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--g800);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-q:hover {
  background: var(--g50);
}
.faq-q__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--motion-duration) var(--motion-easing);
}
.faq-item.open .faq-q__icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--motion-duration) var(--motion-easing);
}
.faq-a__inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--g600);
  line-height: 1.7;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 0.75rem 0;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  color: rgba(255,255,255,0.7);
}
.breadcrumbs__item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.breadcrumbs__item a:hover {
  color: var(--white);
}
.breadcrumbs__sep {
  color: rgba(255,255,255,0.4);
}
.breadcrumbs__item--active {
  color: var(--white);
  font-weight: 600;
}

/* ===== HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 3rem 0 2.5rem;
  color: var(--white);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--g200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.pricing-card__label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--g900);
}

/* ===== CHIPS (neighborhoods) ===== */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--g700);
  transition: all 0.2s;
}
.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lt);
}
.chip--outline {
  background: transparent;
  border-color: var(--g300);
  font-size: 0.8rem;
}
.chip-grid--sm {
  gap: 0.375rem;
}

/* ===== INSURANCE LOGOS ===== */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.insurance-item {
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--g500);
  transition: all 0.2s;
}
.insurance-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
}
.step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--g500);
  line-height: 1.6;
}

/* ===== PROBLEM / SOLUTION ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.compare__col {
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.compare__col--old {
  background: var(--g50);
  border: 2px solid var(--g200);
}
.compare__col--new {
  background: var(--success-lt);
  border: 2px solid var(--success);
}
.compare__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare__col--old .compare__title { color: var(--g500); }
.compare__col--new .compare__title { color: var(--success); }
.compare__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.compare__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.compare__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare__col--old .compare__item {
  color: var(--g500);
  text-decoration: line-through;
}
.compare__col--old .compare__item svg { stroke: var(--error); }
.compare__col--new .compare__item {
  color: var(--g800);
  font-weight: 500;
}
.compare__col--new .compare__item svg { stroke: var(--success); }

/* ===== VALUES GRID ===== */
.value-card {
  padding: 1.75rem;
  border: 2px solid var(--g200);
  border-radius: var(--radius-lg);
  transition: all var(--motion-duration);
}
.value-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.value-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.value-card__desc {
  font-size: 0.9rem;
  color: var(--g500);
  line-height: 1.6;
}

/* ===== TEAM CARD ===== */
.team-card {
  background: var(--white);
  border: 2px solid var(--g200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--motion-duration);
}
.team-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__photo svg {
  width: 64px;
  height: 64px;
  stroke: var(--g300);
}
.team-card__info {
  padding: 1.5rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.team-card__title {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-card__subtitle {
  font-size: 0.8rem;
  color: var(--g500);
  margin-bottom: 0.75rem;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--g500);
  line-height: 1.6;
}
.team-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.team-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--motion-duration);
}
.team-card--link:hover .team-card__cta { color: var(--red); }

/* ===== PROVIDER PROFILE ===== */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.profile-sidebar {
  position: sticky;
  top: 100px;
}
.profile-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.profile-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.profile-quick {
  margin-bottom: 1.5rem;
}
.profile-quick__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.profile-quick__title {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.profile-quick__subtitle {
  font-size: 0.8rem;
  color: var(--g500);
}
.profile-sidebar .btn { margin-bottom: 0.75rem; }
.profile-main {}
.profile-section { margin-bottom: 2rem; }
.profile-section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--g800);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--g200);
}
.profile-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--g600);
}
.profile-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.profile-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--g600);
}

/* ===== STAT COUNTER ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  min-width: 160px;
}
.stat__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--g800);
  font-weight: 500;
}
.contact-info__value a {
  color: var(--g800);
}
.contact-info__value a:hover {
  color: var(--blue);
}

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--g200);
  font-size: 0.95rem;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--g700);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--g600);
}
.hours-table tr:last-child td {
  border-bottom: none;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: var(--white);
  border: 2px solid var(--g200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.sidebar-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--g200);
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.two-col__main ul, .two-col__main ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.two-col__main li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.two-col__main h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.two-col__main h3:first-child {
  margin-top: 0;
}

/* ===== PLACEHOLDER CARD ===== */
.placeholder-card {
  background: var(--g50);
  border: 2px dashed var(--g300);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.placeholder-card__text {
  font-size: 1rem;
  color: var(--g400);
  font-weight: 500;
}

/* ===== MAP EMBED ===== */
.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.container--narrow { max-width: 600px; margin-left: auto; margin-right: auto; }
.container--mid { max-width: 640px; margin-left: auto; margin-right: auto; }
.btn--block { width: 100%; }
.cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.section__intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--g500);
}

/* ===== CHECKLIST ===== */
.checklist { list-style: none; padding: 0; }
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.checklist__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--success);
}

/* ===== LEGAL CONTENT ===== */
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--g800);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--g200);
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--g700);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--g600);
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
  color: var(--g600);
}
.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}
.legal-content a:hover { color: var(--blue-dk); }

/* ===== FOOTER LOGO ===== */
.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.footer__hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.footer__hours strong { color: rgba(255,255,255,0.7); }
.footer__hours em { font-size: 0.8rem; }
.footer__note {
  font-size: 0.9rem;
  color: var(--g500);
}
