/* ── ENROLL PAGE ── */

.enroll-hero {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.enroll-hero-bg {
  position: absolute;
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 300;
  color: rgba(255,255,255,0.018);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.enroll-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.enroll-hero-text h1 { margin-bottom: 1.2rem; }
.enroll-hero-text p  { max-width: 100%; }

/* Programs preview */
.enroll-programs-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
}
.epp-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
}
.program-list { display: flex; flex-direction: column; gap: 0; }
.program-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}
.pl-info { display: flex; flex-direction: column; gap: 0.2rem; }
.pl-name   { font-size: 0.9rem; color: var(--white); font-weight: 400; }
.pl-detail { font-size: 0.74rem; color: rgba(255,255,255,0.35); }
.pl-price  {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}

.early-note {
  margin-top: 1.5rem;
  border: 1px solid rgba(184,149,42,0.25);
  padding: 1.2rem;
}
.en-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.en-body { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* Form section */
.enroll-form-section { }
.enroll-form-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.form-intro h2 { margin-bottom: 1rem; }
.form-intro p  { margin-bottom: 1.5rem; }

.form-trust { display: flex; flex-direction: column; gap: 0.6rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--mist);
}
.trust-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-light {
  background: var(--ivory) !important;
  border: 1px solid var(--cream-dk) !important;
  color: var(--charcoal) !important;
}
.form-light:focus {
  border-color: var(--gold) !important;
  outline: none;
}
.form-card label { color: var(--mist); }
.enroll-submit { width: 100%; padding: 1rem; font-size: 0.8rem; letter-spacing: 0.18em; }

/* Confirmation */
.form-confirm {
  text-align: center;
  padding: 3rem 2rem;
}
.confirm-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-confirm h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.form-confirm p { font-size: 0.95rem; max-width: 380px; margin: 0 auto; }

/* FAQ */
.enroll-faq { }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.faq-item {
  border-top: 2px solid var(--cream);
  padding-top: 1.5rem;
  transition: border-color var(--transition);
}
.faq-item:hover { border-top-color: var(--gold); }
.faq-item h4 { color: var(--charcoal); font-size: 0.88rem; margin-bottom: 0.7rem; line-height: 1.4; }
.faq-item p  { font-size: 0.87rem; line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .enroll-hero-inner { grid-template-columns: 1fr; }
  .enroll-form-wrap  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
}
