/* ===== ENROLL PROGRAMS (2-col) ===== */
.enroll-programs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.enroll-card {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.enroll-card .card-img-placeholder,
.enroll-card .card-img {
  width: 100%;
  height: 280px;
  background: #ccc;
  object-fit: cover;
}
.enroll-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.enroll-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 0.25rem;
}
.enroll-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.enroll-card p {
  color: #444;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.enroll-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.enroll-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

/* ===== MINI ENROLLMENT STEPS ===== */
.enroll-steps-mini {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mini-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.mini-step .step-num {
  width: 28px;
  height: 28px;
  background: #c62828;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mini-step p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ===== ADULT PATHS ===== */
.adult-paths {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.adult-path-btn {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1rem 1.25rem;
  gap: 0.25rem;
  border: 2px solid #c62828;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.adult-path-btn:hover {
  background: #fbe9e7;
  transform: translateY(-2px);
}
.adult-path-btn strong {
  font-size: 0.95rem;
}
.adult-path-btn span {
  font-size: 0.83rem;
  opacity: 0.8;
  font-weight: 400;
}

/* ===== ENROLL BUTTONS & LINKS ===== */
/* Gate overlay with blur */
.enroll-gate {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s;
}
.enroll-gate-blur {
  filter: blur(4px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.enroll-gate-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  border-radius: 8px;
}
.enroll-gate-overlay p {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin: 0;
}
.enroll-gate-btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid #c62828;
  border-radius: 8px;
  background: #fff;
  color: #c62828;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  min-width: 180px;
}
.enroll-gate-btn:hover {
  background: #c62828;
  color: #fff;
  transform: translateY(-1px);
}
.enroll-gate-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0 1rem;
}
.enroll-gate-divider::before,
.enroll-gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #999;
}
.enroll-gate-divider span {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
  text-transform: lowercase;
}

/* Toggle buttons (kept for compatibility) */
.enroll-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.enroll-toggle-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid #c62828;
  border-radius: 8px;
  background: #fff;
  color: #c62828;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.enroll-toggle-btn.active {
  background: #c62828;
  color: #fff;
}
.enroll-toggle-btn:hover:not(.active) {
  background: #fbe9e7;
}

/* Track visibility */
.enroll-track {
  display: none;
}
.enroll-track.active {
  display: block;
}
.enroll-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}
.enroll-link {
  display: inline-block;
  font-size: 0.88rem;
  color: #444;
  text-decoration: underline;
  margin-top: auto;
}
.enroll-link:hover { color: #222; }

/* ===== TUITION SNAPSHOT ===== */
.enroll-tuition {
  background: #f2ede4;
  max-width: 100%;
  padding: 4rem 2rem;
  text-align: center;
}
.enroll-tuition h2 {
  margin-bottom: 0.5rem;
}
.enroll-tuition-intro {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.tuition-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.tuition-snapshot {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  text-align: left;
}
.tuition-snapshot .enroll-label {
  margin-bottom: 0.5rem;
}
.snapshot-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
}
.snapshot-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}
.tuition-snapshot p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== ENROLLMENT FAQS ===== */
.enroll-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.enroll-faq h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .enroll-grid { grid-template-columns: 1fr; }
  .tuition-snapshot-grid { grid-template-columns: 1fr; }
}
