/* ============================================
   About Page Styles
   Sections: hero, mission, process, standards,
   insurance, service areas, final CTA
   ============================================ */

/* ============================================
   Hero (about-specific)

   Layout strategy:
   - Breadcrumb pinned to top-left (wayfinding layer)
   - Title + subtitle left-aligned, anchored to bottom
   - This gives the hero image room to breathe in the
     upper portion while content anchors the lower third
   ============================================ */

.hero--about {
  min-height: 400px;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: var(--space-12);
}

/* --- Title constraint + animation stagger --- */

.hero--about .hero__title {
  max-width: 640px;
  animation-delay: 0.25s;
}

.hero--about .hero__subtitle {
  animation-delay: 0.4s;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .hero--about {
    min-height: 340px;
    padding-bottom: var(--space-8);
  }
}

@media (max-width: 480px) {
  .hero--about {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--about .hero__title,
  .hero--about .hero__subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Section 2: Mission
   Full-width text section within the container.
   ============================================ */

.about-mission h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-6);
}

.about-mission p {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Lead paragraph: the opening questions that pace the reader */
.about-mission p:first-of-type {
  font-size: var(--fs-lg);
  color: var(--color-text);
  line-height: 1.65;
}

.about-mission__link {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.about-mission__link:hover,
.about-mission__link:focus-visible {
  color: var(--color-accent-hover);
}

/* ============================================
   Section 3: Process Steps
   6-step vertical list. Icon left, content right
   on desktop. Stacked on mobile. Divider between steps.
   ============================================ */

.about-steps {
  max-width: 860px;
  margin: 0 auto;
}

.about-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
}

.about-step:first-child {
  padding-top: 0;
}

.about-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* --- Step icon --- */

.about-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--color-accent-bg);
  border-radius: var(--radius-full);
  color: var(--color-accent);
}

.about-step__icon svg {
  width: 22px;
  height: 22px;
}

/* --- Step content --- */

.about-step__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.about-step__text {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Responsive --- */

@media (max-width: 640px) {
  .about-step {
    flex-direction: column;
    gap: var(--space-3);
  }
}

/* ============================================
   Section 4: Standards
   Full-width intro, then 4 cards in a row.
   ============================================ */

.about-standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.about-standard {
  padding: var(--space-6);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

/* No hover lift — these are informational, not interactive */

/* --- Icon --- */

.about-standard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-bg);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.about-standard__icon svg {
  width: 22px;
  height: 22px;
}

/* --- Content --- */

.about-standard__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.about-standard__text {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
  .about-standards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-standards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Section 5: Insurance Guidance
   Two-column: prose left, details right.
   Accent card treatment with left border.
   ============================================ */

.about-insurance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  background-color: var(--color-accent-bg);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-8);
}

/* --- Left column: heading + prose --- */

.about-insurance__content h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-5);
}

.about-insurance__content p {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Right column: list + disclaimer --- */

.about-insurance__subtitle {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.about-insurance__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-insurance__list li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Custom check icon as bullet */
.about-insurance__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: var(--color-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.about-insurance__disclaimer {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .about-insurance {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-6);
  }
}

/* ============================================
   Section 6: Where We Serve
   4 state cards in a row, centered header, CTA below.
   ============================================ */

.about-coverage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.about-coverage__card {
  padding: var(--space-5) var(--space-6);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  text-align: center;
}

.about-coverage__state {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.about-coverage__area {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.about-coverage__note {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-6);
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .about-coverage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .about-coverage {
    grid-template-columns: 1fr;
  }
}
