/* ======= HERO ======= */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      #F2EFE9 0%,
      #F2EFE9 38%,
      rgba(242,239,233,0.82) 52%,
      rgba(13,27,42,0.18) 70%,
      rgba(13,27,42,0.10) 100%
    ),
    url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1800&q=80') center/cover no-repeat;
}
.hero-ribbon {
  position: absolute; bottom: 0; left: 0;
  width: 300px; height: 300px;
  border: 1px solid rgba(196,151,58,0.15);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  pointer-events: none;
}
.hero-ribbon::after {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(196,151,58,0.08);
  border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 330px;
  gap: 64px; align-items: center;
  width: 100%; padding: 56px 0;
}
.hero-pill {
  display: inline-flex; align-items: center;
  padding: 2px 0 2px 14px;
  border-left: 2px solid var(--gold);
  font-size: 10.5px; font-weight: 700;
  color: var(--text);
  margin-bottom: 30px; letter-spacing: 2.2px;
  text-transform: uppercase;
}
.hero-pill-dot { display: none; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.8vw, 86px);
  line-height: 1.02; color: var(--navy);
  font-weight: 400; letter-spacing: -0.3px;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 470px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 44px; padding-top: 36px;
  border-top: 1px solid rgba(13,27,42,0.12);
}
.stat-n {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400; color: var(--navy); line-height: 1;
}
.stat-l { font-size: 11px; color: var(--muted); margin-top: 6px; letter-spacing: 0.8px; text-transform: uppercase; }

/* Profile card right */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,27,42,0.10), 0 16px 56px rgba(13,27,42,0.08);
  text-align: center;
}
.profile-ring {
  width: 100%; height: 265px;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy-mid);
  box-shadow: none;
}
.profile-ring img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.card-name { font-family: var(--font-display); font-size: 22px; color: var(--navy); font-weight: 400; letter-spacing: -0.3px; padding: 22px 22px 0; }
.card-title { font-size: 10.5px; color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 6px 0 4px; }
.card-nmls { font-size: 11.5px; color: var(--muted); margin-bottom: 18px; }
.card-links { display: flex; flex-direction: column; gap: 8px; padding: 0 20px; }
.card-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; transition: all .2s;
}
.card-link.gold { background: var(--gold); color: var(--navy); }
.card-link.gold:hover { background: var(--gold-light); }
.card-link.ghost { border: 1px solid var(--border); color: var(--text); background: transparent; }
.card-link.ghost:hover { border-color: var(--gold-border); color: var(--navy); background: var(--fog); }
.card-vi-badge { margin: 14px 20px 20px; padding: 9px 12px; background: var(--fog); border: 1px solid var(--border-light); border-radius: var(--radius); font-size: 11.5px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 7px; }

/* ======= TRUST BAR ======= */
.trust-bar { background: var(--fog); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px 28px; }
.trust-item:not(:last-child) { border-right: 1px solid var(--border); }
.trust-icon { display: inline-flex; align-items: center; color: var(--slate-light); }

/* ======= ABOUT INTRO ======= */
.about-intro { padding: var(--pad-section); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-img-wrap .img-placeholder { width: 100%; height: 500px; background: linear-gradient(135deg, var(--fog), #d8dfe8); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 18px 24px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.07);
}
.about-float .n { font-family: var(--font-display); font-size: 30px; color: var(--gold-light); line-height: 1; }
.about-float .l { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.3px; }
.about-text p { font-size: 16.5px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.states-wrap { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 32px; }
.s-pill { font-size: 12px; font-weight: 700; padding: 5px 11px; background: var(--fog); border: 1px solid var(--border); border-radius: 5px; color: var(--slate-light); letter-spacing: 0.5px; }

/* ======= PROGRAMS ======= */
.programs { padding: var(--pad-section); background: var(--navy); position: relative; overflow: hidden; }
.programs::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C4973A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.programs .container { position: relative; z-index: 1; }
.programs-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 52px; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prog-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .28s; position: relative; overflow: hidden;
}
.prog-card::after { content:''; position:absolute; top:0;left:0;right:0; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .28s; }
.prog-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(196,151,58,0.22); transform: translateY(-4px); }
.prog-card:hover::after { transform: scaleX(1); }
.prog-icon {
  width: 52px; height: 52px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(196,151,58,0.22);
  border-radius: 11px;
  background: rgba(196,151,58,0.07);
  color: var(--gold-light);
}
.prog-title { font-family: var(--font-display); font-size: 21px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.prog-desc { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.prog-highlight { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--gold-light); background: rgba(196,151,58,0.1); border: 1px solid rgba(196,151,58,0.2); padding: 4px 10px; border-radius: 4px; margin-bottom: 18px; }
.prog-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.5); transition: color .2s, gap .2s; }
.prog-card:hover .prog-link { color: var(--gold-light); gap: 11px; }

/* ======= PROCESS ======= */
.process { padding: var(--pad-section); }
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-row::before { content:''; position:absolute; top:30px; left:12.5%; right:12.5%; height:1.5px; background: linear-gradient(90deg, var(--border), var(--gold-light), var(--border)); z-index:0; }
.proc-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.proc-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; color: var(--gold);
  box-shadow: 0 0 0 6px var(--white);
}
.proc-title { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.proc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ======= TESTIMONIALS ======= */
.testimonials { padding: var(--pad-section); background: var(--fog); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.test-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); position: relative; transition: box-shadow .25s, transform .25s; }
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.test-card::before { content:'"'; font-family: var(--font-display); font-size: 88px; color: var(--gold); opacity: .15; position: absolute; top: 8px; left: 22px; line-height: 1; }
.test-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.test-text { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 22px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av { width: 42px; height: 42px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: var(--gold); flex-shrink: 0; }
.test-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.test-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ======= CTA BAND ======= */
.cta-band { padding: var(--pad-section); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; top:0;left:0;right:0;height:1px; background:linear-gradient(90deg,transparent,rgba(196,151,58,0.5),transparent); }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 54px); color: var(--white); font-weight: 400; letter-spacing: -0.5px; margin-bottom: 16px; }
.cta-inner p { font-size: 17.5px; color: rgba(255,255,255,0.65); margin-bottom: 38px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media(max-width:960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }

  /* Dark overlay on mobile so navy text stays readable */
  .hero-bg {
    background:
      linear-gradient(135deg, rgba(10,20,34,0.88) 0%, rgba(13,27,42,0.82) 100%),
      url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1800&q=80') center/cover no-repeat;
  }
  .hero-h1 { color: var(--white); }
  .hero-h1 em { color: var(--white); text-decoration-color: var(--gold); }
  .hero-pill { color: rgba(255,255,255,0.8); }
  .hero-sub { color: rgba(255,255,255,0.65); }
  .hero-stats { border-top-color: rgba(255,255,255,0.14); }
  .stat-n { color: var(--white); }
  .stat-l { color: rgba(255,255,255,0.45); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-row::before { display: none; }
  .test-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
  .programs-grid { grid-template-columns: 1fr; }
  .trust-item:not(:last-child) { border-right: none; }
  .hero-stats { gap: 28px; }
}
