/* =========================
   NJ School Resolution
   Global Stylesheet
   ========================= */

:root{
  --bg:#f8fafc;
  --ink:#0f172a;
  --muted:#334155;
  --muted2:#64748b;
  --border:#e5e7eb;
  --card:#ffffff;
  --brand:#111827;
  --brand-hover:#0b1220;
  --accent:#1e3a8a;
}

/* ===== Base ===== */

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  margin:0;
  color:var(--ink);
  background:var(--bg);
  line-height:1.7;
  font-size:18px;
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:0 24px;
}

main{
  padding:100px 0 80px 0;
}

/* ===== Header ===== */

header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

header::before{
  content:"";
  display:block;
  height:3px;
  background:var(--accent);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:20px;
}

/* ===== Brand ===== */

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:inherit;
}

.brand img{
  height:52px;
  width:auto;
  display:block;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.brand-title{
  font-size:20px;
  font-weight:700;
  letter-spacing:-0.3px;
  color:var(--ink);
}

.brand-tagline{
  font-size:13px;
  color:var(--muted2);
}

/* ===== Navigation ===== */

nav{
  display:flex;
  align-items:center;
  gap:16px;
}

nav a{
  text-decoration:none;
  color:#475569;
  font-size:14px;
  font-weight:500;
  padding:7px 9px;
  border-radius:8px;
  transition:.2s ease;
  white-space:nowrap;
}

nav a:hover{
  color:var(--ink);
  background:rgba(15,23,42,.06);
}

/* ===== Buttons ===== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:.15s ease;
  border:1px solid transparent;
  line-height:1;
}

.btn-primary{
  background:var(--brand);
  color:#fff;
}

.btn-primary:hover{
  background:var(--brand-hover);
}

.btn-cta{
  background:#ffffff;
  color:#111827;
  border:2px solid #ffffff;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.btn-cta:hover{
  background:#f1f5f9;
}

/* ===== Typography ===== */

h1{
  font-size:38px;
  margin-bottom:20px;
  letter-spacing:-0.5px;
}

h2{
  font-size:26px;
  margin-top:60px;
  margin-bottom:18px;
}

h3{
  font-size:18px;
  margin-top:28px;
}

.lead{
  font-size:20px;
  color:var(--muted);
  max-width:760px;
}

p{
  color:var(--muted);
  max-width:85ch;
}

/* ===== HERO SECTION ===== */

.hero{
  margin-bottom:80px;
  max-width:760px;
}

.hero-sub{
  font-size:20px;
  color:var(--muted);
  margin-bottom:14px;
}

.hero-cred{
  font-size:15px;
  color:var(--muted2);
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* ===== Context Section ===== */

.context{
  margin-top:40px;
}

/* ===== Credibility Frame ===== */

.credibility{
  margin-top:30px;
  padding:22px;
  background:#f1f5f9;
  border-radius:10px;
  border-left:4px solid var(--accent);
}

/* ===== Grid + Cards ===== */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top:30px;
}

.card{
  background:var(--card);
  padding:22px;
  border-radius:12px;
  border:1px solid var(--border);
  transition:.2s ease;
}

.card:hover{
  box-shadow:0 6px 18px rgba(15,23,42,.08);
  transform:translateY(-2px);
}

.card a{
  font-weight:600;
  color:#1e3a8a;
}

.card a:hover{
  text-decoration:underline;
}

/* ===== Process Section ===== */

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top:30px;
}

.step{
  background:#ffffff;
  padding:26px;
  border-radius:12px;
  border:1px solid var(--border);
  transition:.2s ease;
}

.step:hover{
  box-shadow:0 6px 18px rgba(15,23,42,.08);
}

.step h3{
  margin-top:0;
}

/* ===== Section Divider ===== */

.section-divider{
  margin:70px 0;
  border:none;
  border-top:1px solid var(--border);
}

/* ===== Session Snapshot Box ===== */

.session-snapshot{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:26px;
  margin-top:30px;
  max-width:520px;
}

.session-snapshot h3{
  margin-top:0;
}

.session-snapshot ul{
  margin:12px 0 0 0;
  padding-left:18px;
}

.session-snapshot li{
  margin-bottom:6px;
  color:var(--muted);
}

/* ===== Highlight / Statute Boxes ===== */

.statute{
  background:#eef2ff;
  border-left:4px solid #1e3a8a;
  padding:22px;
  margin:30px 0;
  border-radius:10px;
}

/* ===== CTA Band ===== */

.cta-band{
  margin-top:80px;
  padding:50px;
  background:var(--brand);
  color:#fff;
  border-radius:16px;
}

.cta-band h2{
  margin-top:0;
  color:#fff;
}

.cta-band p{
  color:rgba(255,255,255,.9);
}

/* ===== Pricing Highlight ===== */

.price-line{
  margin-top:20px;
  font-size:16px;
  opacity:.9;
}

.price{
  font-size:36px;
  font-weight:700;
  margin:8px 0 12px 0;
}

/* ===== Footer ===== */

footer{
  border-top:1px solid var(--border);
  margin-top:80px;
  padding:40px 0;
  font-size:14px;
  color:var(--muted2);
  background:#fff;
}

footer a{
  color:#475569;
  text-decoration:none;
}

footer a:hover{
  color:var(--ink);
}

/* ===== Mobile ===== */

@media (max-width:700px){

  .brand img{
    height:44px;
  }

  nav{
    gap:10px;
  }

  .hero{
    margin-bottom:60px;
  }

  .price{
    font-size:30px;
  }

}