/* ── INNER PAGES ── */

.pg-hero {
  background: var(--forest);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.pg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pg-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.pg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,0.92) 0%, rgba(26,58,42,0.78) 100%);
}
.pg-hero .wrap { position: relative; z-index: 1; }

.pg-hero-inner { padding: 90px 0 60px; max-width: 680px; }
.pg-hero-title { font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; color: var(--ivory); line-height: 1.1; margin: 0.5rem 0 1.25rem; }
.pg-hero-sub { font-size: 1.05rem; color: rgba(247,244,238,0.62); line-height: 1.8; max-width: 540px; }

.pg-hero-bar {
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
  position: relative; z-index: 1;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.06em; color: rgba(247,244,238,0.4); }
.breadcrumb a { color: rgba(247,244,238,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ivory); }

/* PROSE */
.prose p { color: var(--mid); line-height: 1.85; font-size: 1rem; margin-bottom: 1.25rem; }
.prose p strong { color: var(--charcoal); font-weight: 600; }
.prose h3 { font-family: var(--display); font-size: 1.6rem; font-weight: 400; color: var(--forest); margin: 2.5rem 0 1rem; line-height: 1.2; }

/* INLINE IMAGE */
.prose-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  max-height: 360px;
}
.prose-img img { width: 100%; height: 100%; object-fit: cover; }

/* TWO-COL */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* SPLIT WITH IMAGE */
.split-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img .img-frame {
  height: 400px;
  border-radius: var(--radius-lg);
}

/* INFO CARD */
.info-card {
  background: var(--ivory-dark); border: 1.5px solid var(--rule); border-radius: 12px;
  padding: 2.5rem; transition: var(--ease);
}
.info-card:hover { border-color: var(--forest-pale); box-shadow: 0 8px 32px rgba(26,58,42,0.08); }
.info-card-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.info-card h4 { font-family: var(--display); font-size: 1.3rem; font-weight: 400; color: var(--forest); margin-bottom: 0.75rem; line-height: 1.2; }
.info-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.75; }

/* IMAGE CARD (card with photo) */
.info-card-img {
  height: 180px;
  margin: -2.5rem -2.5rem 1.5rem;
  overflow: hidden;
  border-radius: 11px 11px 0 0;
}
.info-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* GRID CARDS */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* NUMBERED LIST */
.numbered-list { display: flex; flex-direction: column; gap: 0; }
.nl-item { display: flex; gap: 1.75rem; padding: 2rem 0; border-bottom: 1px solid var(--rule); }
.nl-item:first-child { border-top: 1px solid var(--rule); }
.nl-item-num { font-family: var(--display); font-size: 3rem; font-weight: 400; color: var(--forest-pale); line-height: 1; min-width: 48px; flex-shrink: 0; }
.nl-item-content h4 { font-family: var(--display); font-size: 1.25rem; font-weight: 400; color: var(--forest); margin-bottom: 0.5rem; }
.nl-item-content p { font-size: 0.9rem; color: var(--mid); line-height: 1.75; }

/* STAT ROW */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1.5px solid var(--rule); border-radius: 12px; overflow: hidden; }
.stat-cell { padding: 2.5rem 2rem; border-right: 1px solid var(--rule); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-big { display: block; font-family: var(--display); font-size: clamp(2rem,4vw,3rem); font-weight: 400; color: var(--forest); line-height: 1; margin-bottom: 6px; }
.stat-desc { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }

/* TESTIMONIAL */
.testi { background: var(--ivory-dark); border-left: 3px solid var(--rust); border-radius: 0 12px 12px 0; padding: 2rem 2.5rem; }
.testi blockquote { font-family: var(--display); font-size: 1.15rem; font-weight: 400; font-style: italic; color: var(--forest); line-height: 1.65; margin-bottom: 1rem; }
.testi cite { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* DARK SECTION */
.dark-sec { background: var(--forest); }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 5rem; align-items: start; }
.form-box { background: var(--ivory-dark); border: 1.5px solid var(--rule); border-radius: 14px; padding: 3rem; }
.form-box h3 { font-family: var(--display); font-size: 1.75rem; font-weight: 400; color: var(--forest); margin-bottom: 2rem; }

.contact-aside { display: flex; flex-direction: column; gap: 2rem; }
.aside-block { padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
.aside-block:last-child { border-bottom: none; }
.aside-block-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 8px;
}
.aside-block-label::before { content: ''; width: 16px; height: 1.5px; background: var(--rust); }
.aside-block-content { font-size: 0.92rem; color: var(--mid); line-height: 1.75; }
.aside-block-content a { color: var(--forest); font-weight: 500; }
.aside-block-content a:hover { text-decoration: underline; }
.aside-block-content strong { display: block; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }

/* APPLY PAGE */
.apply-hero-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(181,69,27,0.15); border: 1px solid rgba(181,69,27,0.25);
  color: var(--rust-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-top: 1.5rem;
}

.eligibility-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--rule); border: 1.5px solid var(--rule); border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem;
}
.elig-cell { background: var(--ivory); padding: 2.5rem 2rem; text-align: center; }
.elig-flag { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.elig-label { font-family: var(--display); font-size: 1.05rem; font-weight: 400; color: var(--forest); }

/* PRIVACY PAGE */
.policy-wrap { max-width: 760px; margin: 0 auto; }
.policy-sec { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--rule); }
.policy-sec:last-child { border-bottom: none; }
.policy-sec h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 400; color: var(--forest); margin-bottom: 1rem; }
.policy-sec p, .policy-sec li { font-size: 0.94rem; color: var(--mid); line-height: 1.85; margin-bottom: 0.75rem; }
.policy-sec ul { padding-left: 1.25rem; }
.policy-sec ul li { list-style: disc; margin-bottom: 0.4rem; }
.policy-sec a { color: var(--forest); text-decoration: underline; }

/* INNER CTA */
.inner-cta-band { background: var(--ivory-dark); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 80px 0; text-align: center; }
.inner-cta-band .headline { margin-bottom: 1rem; }
.inner-cta-band p { color: var(--mid); font-size: 1rem; margin: 0 auto 2rem; max-width: 480px; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CONTACT PAGE NEWSLETTER — REDESIGNED */
.contact-nl {
  background: var(--forest);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}
.contact-nl::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(181,69,27,0.15);
  pointer-events: none;
}
.contact-nl::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.contact-nl h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  position: relative;
}
.contact-nl > p {
  font-size: 0.88rem;
  color: rgba(247,244,238,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
}
.contact-nl form {
  display: flex;
  gap: 8px;
  position: relative;
}
.contact-nl input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
}
.contact-nl input::placeholder { color: rgba(247,244,238,0.35); }
.contact-nl input:focus { border-color: rgba(255,255,255,0.45); }
.contact-nl button {
  padding: 13px 22px;
  background: var(--rust);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
}
.contact-nl button:hover { background: var(--rust-light); }
.contact-nl .nl-privacy {
  font-size: 0.72rem;
  color: rgba(247,244,238,0.3);
  margin-top: 0.6rem;
  position: relative;
}
.contact-nl .nl-privacy a { color: rgba(247,244,238,0.5); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split-img { grid-template-columns: 1fr; gap: 2rem; }
  .split-img .img-frame { height: 280px; }
  .cards-3 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .eligibility-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .cards-2 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .eligibility-grid { grid-template-columns: 1fr 1fr; }
  .pg-hero-inner { padding: 60px 0 40px; }
  .contact-nl form { flex-direction: column; }
}
