/* ═══════════════════════════════════════════════════════════
   GHOSXT-CARES.CSS — Ghosxt Cares Community Program Page
   Follows the --ghosxt- design system from main.css
   Naming convention mirrors index.css:
     each section owns its own flat prefix, never shared.
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   HERO SECTION
   Classes: cares-hero-*
───────────────────────────────────────────────────────── */
.cares-hero-section {
  padding: 0 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background: var(--ghosxt-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cares-hero-container {
  padding: 8rem 0 5rem;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Red accent bar at very top of hero — matches the index red-line pattern */
.cares-hero-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ghosxt-red-0);
  z-index: 10;
}

/* Subtle dot/grid background inside hero */
.cares-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Hero badge — same structural pattern as .hero-badge in index.css,
   scoped under the dark hero so colours invert */
.cares-hero-badge {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cares-hero-badge .badge-lines:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.cares-hero-badge .badge-lines:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.cares-hero-badge .badge-line {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.cares-hero-badge .badge-container {
  color: rgba(255, 255, 255, 0.85);
}

.cares-hero-badge .badge-text {
  color: rgba(255, 255, 255, 0.85);
}

.cares-hero-badge i {
  color: var(--ghosxt-red-0);
}

.cares-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--ghosxt-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.cares-hero-title span {
  color: var(--ghosxt-red-0);
}

.cares-hero-subtitle {
  font-size: 1.25rem;
  font-family: var(--font-family-2);
  color: var(--ghosxt-white);
  line-height: 1.6;
  max-width: 620px;
  text-align: center;
  opacity: 0.8;
}

.cares-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--ghosxt-red-0);
  color: var(--ghosxt-white);
  font-family: var(--font-family-2);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--ghosxt-black);
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.3);
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.cares-hero-cta:hover {
  transform: translateY(-2px);
  color: var(--ghosxt-white);
  text-decoration: none;
}

/* Hero actions: primary + secondary CTA side by side */
.cares-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Secondary (outline) CTA — inverted to read on the dark hero */
.cares-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: transparent;
  color: var(--ghosxt-white);
  font-family: var(--font-family-2);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.cares-hero-cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ghosxt-white);
  color: var(--ghosxt-white);
  text-decoration: none;
}

.cares-hero-note {
  font-family: var(--font-family-2);
  font-size: 0.9rem;
  color: var(--ghosxt-white);
  opacity: 0.6;
  text-align: center;
  margin-top: -0.5rem;
}

/* ─────────────────────────────────────────────────────────
   MISSION SECTION  ("Why we do this")
   Classes: cares-mission-*
───────────────────────────────────────────────────────── */
.cares-mission-section {
  padding: 0 24px;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cares-mission-container {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cares-mission-badge {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid var(--ghosxt-black);
  position: relative;
  width: fit-content;
  background: var(--ghosxt-white);
}

.cares-mission-badge .badge-lines:first-child {
  border-right: 1px solid var(--ghosxt-black);
}

.cares-mission-badge .badge-lines:last-child {
  border-left: 1px solid var(--ghosxt-black);
}

.cares-mission-badge .badge-line {
  margin-top: 3px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid var(--ghosxt-black);
}

.cares-mission-badge i {
  display: flex;
  align-items: center;
  color: var(--ghosxt-red-0);
  font-size: 0.9rem;
}

.cares-mission-badge .badge-text {
  color: var(--ghosxt-black);
  font-size: 1rem;
  font-family: var(--font-family-2);
}

.cares-mission-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cares-mission-title span {
  color: var(--ghosxt-red-0);
}

.cares-mission-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.cares-mission-body p {
  font-size: 1.125rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   STEPS SECTION  ("How to apply")
   Classes: cares-steps-* / cares-step-*
───────────────────────────────────────────────────────── */
.cares-steps-section {
  padding: 0 24px;
  background: var(--ghosxt-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cares-steps-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cares-steps-badge {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid var(--ghosxt-black);
  position: relative;
  width: fit-content;
  background: var(--ghosxt-white);
}

.cares-steps-badge .badge-lines:first-child {
  border-right: 1px solid var(--ghosxt-black);
}

.cares-steps-badge .badge-lines:last-child {
  border-left: 1px solid var(--ghosxt-black);
}

.cares-steps-badge .badge-line {
  margin-top: 3px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid var(--ghosxt-black);
}

.cares-steps-badge i {
  display: flex;
  align-items: center;
  color: var(--ghosxt-black);
  font-size: 0.9rem;
}

.cares-steps-badge .badge-text {
  color: var(--ghosxt-black);
  font-size: 1rem;
  font-family: var(--font-family-2);
}

.cares-steps-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-red-0);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cares-steps-subtitle {
  font-size: 1.125rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cares-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.cares-step-card {
  border: 1px solid var(--ghosxt-black);
  border-radius: 12px;
  padding: 2rem;
  background: var(--ghosxt-white);
  box-shadow: 3px 3px 0 0 var(--ghosxt-black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.cares-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ghosxt-red-0);
  color: var(--ghosxt-white);
  border: 1px solid var(--ghosxt-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cares-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ghosxt-black);
  line-height: 1.2;
}

.cares-step-desc {
  font-size: 0.95rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   APPLY SECTION — actions (primary + secondary) + note
   (Extends the existing .apply-* block above)
───────────────────────────────────────────────────────── */
.apply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.apply-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--ghosxt-white);
  color: var(--ghosxt-black);
  font-family: var(--font-family-2);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--ghosxt-black);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 0px 0px;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.apply-cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 0px 0px;
  text-decoration: none;
  color: var(--ghosxt-black);
}

.apply-cta-secondary i {
  display: flex;
}

.apply-note {
  font-family: var(--font-family-2);
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.apply-note a {
  color: var(--ghosxt-red-0);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────
   FAQ SECTION  ("Questions, answered")
   Classes: cares-faq-*
───────────────────────────────────────────────────────── */
.cares-faq-section {
  padding: 0 24px;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cares-faq-container {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cares-faq-badge {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid var(--ghosxt-black);
  position: relative;
  width: fit-content;
  background: var(--ghosxt-white);
}

.cares-faq-badge .badge-lines:first-child {
  border-right: 1px solid var(--ghosxt-black);
}

.cares-faq-badge .badge-lines:last-child {
  border-left: 1px solid var(--ghosxt-black);
}

.cares-faq-badge .badge-line {
  margin-top: 3px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid var(--ghosxt-black);
}

.cares-faq-badge i {
  display: flex;
  align-items: center;
  color: var(--ghosxt-black);
  font-size: 0.9rem;
}

.cares-faq-badge .badge-text {
  color: var(--ghosxt-black);
  font-size: 1rem;
  font-family: var(--font-family-2);
}

.cares-faq-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-red-0);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  text-align: center;
}

/* The shared grain overlay (.cares-hero-section:after in main.css) is
   position:fixed and 300% wide/tall, so it floats above the whole page.
   Without this it swallows clicks on interactive elements lower down the
   page (e.g. the FAQ accordion). Scoped here so other pages are untouched. */
.cares-hero-section::after {
  pointer-events: none;
}

.cares-faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.cares-faq-item {
  border: 1px solid var(--ghosxt-black);
  border-radius: 10px;
  background: var(--ghosxt-white);
  overflow: hidden;
}

.cares-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family-2);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ghosxt-black);
  line-height: 1.4;
}

.cares-faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--ghosxt-red-0);
  display: flex;
}

.cares-faq-item.active .cares-faq-icon {
  transform: rotate(180deg);
}

.cares-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cares-faq-item.active .cares-faq-answer {
  max-height: 400px;
}

.cares-faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-family: var(--font-family-2);
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   PROVIDES SECTION  ("What we provide")
   Classes: provides-*
───────────────────────────────────────────────────────── */
.provides-section {
  padding: 0 24px;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.provides-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
}

.provides-badge {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid var(--ghosxt-black);
  position: relative;
  width: fit-content;
  background: var(--ghosxt-white);
}

.provides-badge .badge-lines:first-child {
  border-right: 1px solid var(--ghosxt-black);
}

.provides-badge .badge-lines:last-child {
  border-left: 1px solid var(--ghosxt-black);
}

.provides-badge .badge-line {
  margin-top: 3px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid var(--ghosxt-black);
}

.provides-badge i {
  display: flex;
  align-items: center;
  color: var(--ghosxt-black);
  font-size: 0.9rem;
}

.provides-badge .badge-text {
  color: var(--ghosxt-black);
  font-size: 1rem;
  font-family: var(--font-family-2);
}

.provides-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-red-0);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.provides-subtitle {
  font-size: 1.125rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 3rem;
}

.provides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.provides-card {
  border: 1px solid var(--ghosxt-black);
  border-radius: 12px;
  padding: 2rem;
  background: var(--ghosxt-white);
  box-shadow: 3px 3px 0 0 var(--ghosxt-black);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.provides-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 0 var(--ghosxt-black);
}

.provides-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ghosxt-black);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ghosxt-white);
  flex-shrink: 0;
}

.provides-card-icon i {
  font-size: 1.4rem;
  color: var(--ghosxt-black);
  display: flex;
  align-items: center;
}

.provides-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ghosxt-black);
  line-height: 1.2;
}

.provides-card-desc {
  font-size: 0.95rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   COVERS SECTION  ("What your org covers")
   Classes: covers-*
───────────────────────────────────────────────────────── */
.covers-section {
  padding: 0 24px;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.covers-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.covers-badge {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid var(--ghosxt-black);
  position: relative;
  width: fit-content;
  background: var(--ghosxt-white);
}

.covers-badge .badge-lines:first-child {
  border-right: 1px solid var(--ghosxt-black);
}

.covers-badge .badge-lines:last-child {
  border-left: 1px solid var(--ghosxt-black);
}

.covers-badge .badge-line {
  margin-top: 3px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid var(--ghosxt-black);
}

.covers-badge i {
  display: flex;
  align-items: center;
  color: var(--ghosxt-black);
  font-size: 0.9rem;
}

.covers-badge .badge-text {
  color: var(--ghosxt-black);
  font-size: 1rem;
  font-family: var(--font-family-2);
}

.covers-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-red-0);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.covers-subtitle {
  font-size: 1.125rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 3rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.covers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  width: 100%;
}

.covers-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--ghosxt-black);
  border-radius: 10px;
  background: var(--ghosxt-white);
  text-align: left;
}

.covers-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ghosxt-black);
  flex-shrink: 0;
  margin-top: 7px;
}

.covers-item-text {
  font-size: 1rem;
  font-family: var(--font-family-2);
  color: var(--ghosxt-black);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────
   ELIGIBILITY SECTION  ("Do you qualify?")
   Classes: eligibility-*
───────────────────────────────────────────────────────── */
.eligibility-section {
  padding: 0 24px;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eligibility-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eligibility-badge {
  display: flex;
  margin-bottom: 2rem;
  border: 1px solid var(--ghosxt-black);
  position: relative;
  width: fit-content;
  background: var(--ghosxt-white);
}

.eligibility-badge .badge-lines:first-child {
  border-right: 1px solid var(--ghosxt-black);
}

.eligibility-badge .badge-lines:last-child {
  border-left: 1px solid var(--ghosxt-black);
}

.eligibility-badge .badge-line {
  margin-top: 3px;
  height: 1px;
  width: 10px;
  border-bottom: 1px solid var(--ghosxt-black);
}

.eligibility-badge i {
  display: flex;
  align-items: center;
  color: var(--ghosxt-black);
  font-size: 0.9rem;
}

.eligibility-badge .badge-text {
  color: var(--ghosxt-black);
  font-size: 1rem;
  font-family: var(--font-family-2);
}

.eligibility-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-red-0);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.eligibility-subtitle {
  font-size: 1.125rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 3rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eligibility-box {
  border: 1px dashed var(--ghosxt-black);
  border-radius: 12px;
  padding: 2.5rem;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  width: 100%;
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.eligibility-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  font-family: var(--font-family-2);
  color: var(--ghosxt-black);
  line-height: 1.5;
  text-align: left;
}

.eligibility-list li i {
  color: var(--ghosxt-black);
  font-size: 1rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   APPLY SECTION  ("Get started")
   Classes: apply-*
───────────────────────────────────────────────────────── */
.apply-section {
  padding: 0 24px;
  background: var(--ghosxt-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.apply-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 1000;
}

.apply-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ghosxt-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.apply-title span {
  color: var(--ghosxt-red-0);
}

.apply-text {
  font-size: 1.125rem;
  font-family: var(--font-family-2);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 560px;
}

.apply-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--ghosxt-red-0);
  color: var(--ghosxt-white);
  font-family: var(--font-family-2);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--ghosxt-black);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 0px 0px;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    color 0.2s ease;
  letter-spacing: 0.01em;
}

.apply-cta:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 0px 0px;
  text-decoration: none;
}

.apply-cta i {
  display: flex;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 968px) {
  .cares-hero-title {
    font-size: 3rem;
  }

  .provides-grid,
  .cares-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .provides-title,
  .covers-title,
  .eligibility-title,
  .apply-title,
  .cares-mission-title,
  .cares-steps-title,
  .cares-faq-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .cares-hero-section,
  .provides-section,
  .covers-section,
  .eligibility-section,
  .apply-section,
  .cares-mission-section,
  .cares-steps-section,
  .cares-faq-section {
    padding: 0 16px;
  }

  .cares-hero-container {
    padding: 6rem 0 3rem;
  }

  .cares-hero-title {
    font-size: 2.25rem;
  }

  .cares-hero-subtitle {
    font-size: 1rem;
  }

  /* Stack hero/apply CTAs full-width so neither button overflows */
  .cares-hero-actions,
  .apply-actions {
    flex-direction: column;
    align-self: stretch;
  }

  .cares-hero-actions a,
  .apply-actions a {
    justify-content: center;
  }

  .provides-grid,
  .cares-steps-grid {
    grid-template-columns: 1fr;
  }

  .provides-container,
  .covers-container,
  .eligibility-container,
  .apply-container,
  .cares-mission-container,
  .cares-steps-container,
  .cares-faq-container {
    padding: 3rem 0;
  }

  .provides-title,
  .covers-title,
  .eligibility-title,
  .cares-mission-title,
  .cares-steps-title,
  .cares-faq-title {
    font-size: 1.85rem;
  }

  .apply-title {
    font-size: 1.85rem;
  }

  .apply-text,
  .cares-mission-body p {
    font-size: 1rem;
  }

  .eligibility-box {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .cares-hero-title {
    font-size: 1.85rem;
  }

  .provides-title,
  .covers-title,
  .eligibility-title,
  .apply-title,
  .cares-mission-title,
  .cares-steps-title,
  .cares-faq-title {
    font-size: 1.6rem;
  }

  .provides-card,
  .cares-step-card {
    padding: 1.5rem;
  }

  .cares-faq-question {
    font-size: 1rem;
  }
}
