/* ============================================
   PROGRAM PAGE — program.css
   ============================================ */

/* ---- Active nav ---- */
.main-nav a.active { color: var(--navy); background: var(--light-bg); font-weight: 700; }

/* ---- Overview Layout ---- */
.overview-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.overview-copy p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.overview-copy h2 { margin-bottom: 24px; }

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.highlight-icon {
  width: 22px; height: 22px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Quick Facts Card */
.overview-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.overview-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.fact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.fact-item:last-of-type { border-bottom: none; }
.fact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }
.fact-value { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.fact-value.free { color: var(--green); }
.fact-value.no   { color: var(--text-light); }

/* ---- Eligibility ---- */
.eligibility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}
.elig-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0 0 14px;
  border-bottom: 2px solid;
  margin-bottom: 20px;
}
.elig-heading.may-qualify { color: var(--green); border-color: var(--green); }
.elig-heading.wont-qualify { color: #c0392b; border-color: #c0392b; }

.elig-list { display: flex; flex-direction: column; gap: 12px; }
.elig-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.elig-item.yes { border-color: rgba(46,125,85,0.2); background: rgba(46,125,85,0.04); }
.elig-item.no  { border-color: rgba(192,57,43,0.15); background: rgba(192,57,43,0.03); }

.elig-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.elig-icon.no { background: #c0392b; }

.elig-item strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 3px; }
.elig-item span   { font-size: 13px; color: var(--text-light); line-height: 1.4; }

/* ---- Program Components (dark section) ---- */
.program-components {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.program-component {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.program-component:last-child { border-bottom: none; }

.component-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  opacity: 0.7;
  padding-top: 6px;
}
.component-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.component-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  color: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.component-content h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.component-content p  { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.component-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}
.component-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.component-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
}

/* ---- Process Timeline ---- */
.process-timeline {
  max-width: 820px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0;
  margin-bottom: 0;
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.tl-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46,125,85,0.3);
  z-index: 1;
}
.tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 8px 0;
  min-height: 40px;
}
.timeline-content {
  padding: 0 0 40px 20px;
}
.timeline-item:last-child .timeline-content { padding-bottom: 0; }

.tl-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 6px;
}
.timeline-content h3 { font-size: 18px; margin-bottom: 10px; }
.timeline-content p  { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0; }
.tl-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--light-bg);
  border-radius: 6px;
  border: 1px solid var(--border);
  line-height: 1.5;
}
.tl-note svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

/* ---- Expectations ---- */
.expectations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.expect-copy p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.expect-copy h2 { margin-bottom: 20px; }
.expect-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.expect-col {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.expect-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 20px;
  background: var(--green-light);
  color: var(--green);
  border-bottom: 1px solid rgba(46,125,85,0.2);
}
.expect-heading.not {
  background: #fdeaea;
  color: #c0392b;
  border-bottom-color: rgba(192,57,43,0.15);
}
.expect-list {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.expect-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.4;
}
.expect-list li:last-child { border-bottom: none; }
.expect-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.expect-list.not li::before {
  content: '✕';
  color: #c0392b;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .overview-layout      { grid-template-columns: 1fr; }
  .overview-card        { position: static; }
  .expectations-layout  { grid-template-columns: 1fr; }
  .expect-grid          { flex-direction: row; }
  .expect-col           { flex: 1; }
}
@media (max-width: 768px) {
  .eligibility-layout   { grid-template-columns: 1fr; }
  .program-component    { grid-template-columns: 1fr; gap: 16px; }
  .component-num        { font-size: 32px; }
  .component-body       { flex-direction: column; }
  .expect-grid          { flex-direction: column; }
  .timeline-item        { grid-template-columns: 44px 1fr; }
}
