:root{
  --red:#d71920;
  --blue:#0b2a6f;
  --text:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --alt:#f6f7fb;
  --card:#ffffff;
  --border:rgba(0,0,0,0.10);
  --shadow:0 12px 28px rgba(0,0,0,0.08);
  --radius:14px;

  /* Sticky-header anchor offset: tight, not “too far down” */
  --headerH: 82px;
  --anchorGap: 8px;
}

*{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  scroll-padding-top: calc(var(--headerH) + var(--anchorGap));
}
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* Prevent sticky header from covering anchored section headings */
section[id]{
  scroll-margin-top: calc(var(--headerH) + var(--anchorGap));
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.muted{ color:var(--muted); }

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.07);
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; text-decoration:none; }
.logo{ max-width:240px; height:auto; display:block; }

/* Nav links */
.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
}
.navlinks > a{
  position:relative;
  color:rgba(17,24,39,0.92);
  text-decoration:none;
  font-weight:750;
  font-size:0.98rem;
  letter-spacing:0.1px;
  padding:10px 4px;
}
.navlinks > a:hover{ color:var(--blue); }
.navlinks > a::after{
  content:"";
  position:absolute;
  left:4px;
  right:4px;
  bottom:6px;
  height:2px;
  background:var(--blue);
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 180ms ease;
  opacity:0.9;
}
.navlinks > a:hover::after{ transform:scaleX(1); }

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:8px;
}

/* Mobile toggle */
.nav-toggle{
  display:none;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(255,255,255,0.92);
  border-radius:12px;
  padding:9px 11px;
  font-size:18px;
  cursor:pointer;
}
.nav-toggle:hover{ border-color:rgba(0,0,0,0.16); }

/* Mobile menu */
.mobile-nav{
  display:none;
  gap:10px;
  padding:14px 20px 18px;
  border-bottom:1px solid rgba(0,0,0,0.07);
  background:rgba(255,255,255,0.96);
}
.mobile-nav a{
  text-decoration:none;
  color:rgba(17,24,39,0.92);
  font-weight:850;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  line-height:1;
  height:42px;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}
.btn:active{
  transform: translateY(0px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.btn-full{ width:100%; }

.btn-primary{
  background:var(--red);
  color:#fff !important;
  border-color:var(--red);
  box-shadow: 0 10px 18px rgba(215,25,32,0.22);
}
.btn-primary:hover{
  filter: brightness(0.97);
  box-shadow: 0 14px 24px rgba(215,25,32,0.26);
}

.btn-outline{
  background:#fff;
  color:var(--blue) !important;
  border-color:rgba(11,42,111,0.22);
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
}
.btn-outline:hover{
  background:rgba(11,42,111,0.04);
  border-color:rgba(11,42,111,0.36);
  box-shadow: 0 14px 24px rgba(0,0,0,0.08);
}

/* High-contrast hero review button */
.btn-ghost{
  background:#fff;
  color:var(--blue) !important;
  border:1px solid rgba(255,255,255,0.40);
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
}
.btn-ghost:hover{
  background:#f4f6fb;
  box-shadow: 0 14px 24px rgba(0,0,0,0.20);
}

.btn-students{
  background:rgba(11,42,111,0.10);
  color:var(--blue) !important;
  border-color:rgba(11,42,111,0.18);
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
}
.btn-students:hover{
  background:rgba(11,42,111,0.14);
  border-color:rgba(11,42,111,0.26);
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11,42,111,1) 0%, rgba(11,42,111,0.95) 60%, rgba(11,42,111,0.90) 100%);
  color:#fff;
  padding:46px 0 58px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(215,25,32,0.16), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,0.08), transparent 55%);
  transform: rotate(-8deg);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity:0.22;
  pointer-events:none;
}
.hero .container{ position: relative; z-index: 1; }

.hero-grid{
  display:grid;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-block;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
}
.hero-copy h1{
  font-size: clamp(2.05rem, 3.4vw, 3.2rem);
  margin:12px 0 10px;
  line-height:1.06;
}
.lead{
  font-size:1.06rem;
  line-height:1.65;
  color:rgba(255,255,255,0.92);
  margin:0 0 18px;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 18px;
}

.trust-strip{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:var(--radius);
  padding:14px 14px;
}
.trust-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.22);
  border:1px solid rgba(255,255,255,0.35);
  font-size:18px;
  flex:0 0 auto;
}
.trust-metric{
  font-weight:950;
  font-size:1.05rem;
  line-height:1.1;
}
.trust-label{
  color:rgba(255,255,255,0.88);
  font-size:0.95rem;
  line-height:1.35;
}

/* Hero card */
.hero-card .card{
  background:rgba(255,255,255,0.98);
  color:var(--text);
  border-radius:18px;
  padding:18px;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.14),
    0 2px 0 rgba(255,255,255,0.35) inset;
  position:relative;
  overflow:hidden;
}
.hero-card .card::before{
  content:"";
  position:absolute;
  left:-30%;
  top:-40%;
  width:160%;
  height:120%;
  background: radial-gradient(circle at 30% 20%, rgba(11,42,111,0.10), transparent 55%);
  pointer-events:none;
}
.hero-card .card > *{ position:relative; z-index:1; }

.badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.badge{
  font-weight:950;
  font-size:0.9rem;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(215,25,32,0.10);
  color:var(--red);
  border:1px solid rgba(215,25,32,0.20);
}
.badge-outline{
  background:rgba(11,42,111,0.08);
  color:var(--blue);
  border:1px solid rgba(11,42,111,0.16);
}
.card-title{ font-size:1.18rem; margin:0 0 8px; }
.card-text{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.card-points{ display:grid; gap:8px; margin:12px 0 14px; font-weight:800; }
.mini{ margin-top:14px; padding-top:14px; border-top:1px solid rgba(0,0,0,0.08); }
.mini-title{ font-weight:950; margin-bottom:4px; }
.mini-text{ color:var(--muted); line-height:1.5; }

/* Sections */
.section{ padding:58px 0; }
.section-alt{ background:var(--alt); }
.section-head h2{ margin:0 0 8px; font-size:1.95rem; }
.section-head p{ margin:0; color:var(--muted); line-height:1.65; }

/* USP */
.section-usp{
  background: linear-gradient(180deg, rgba(11,42,111,0.06), rgba(11,42,111,0.02));
}
.usp-head h2{ margin:0 0 8px; font-size:1.95rem; }
.usp-head p{ margin:0; line-height:1.65; }
.usp-grid{ display:grid; gap:16px; margin-top:18px; }
.usp-item{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.usp-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background:rgba(215,25,32,0.10);
  border:1px solid rgba(215,25,32,0.18);
  margin-bottom:10px;
}
.usp-title{ font-weight:950; color:var(--blue); margin-bottom:6px; }
.usp-text{ color:var(--muted); line-height:1.6; margin:0; }
.usp-band{
  margin-top:18px;
  border:1px solid rgba(11,42,111,0.16);
  background:rgba(255,255,255,0.78);
  border-radius:var(--radius);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}
.usp-band-title{ font-weight:950; color:var(--blue); margin-bottom:4px; }
.usp-band-text{ color:var(--muted); line-height:1.5; }

/* Outcomes */
.section-outcomes{ background:#fff; }
.outcomes-head h2{ margin:0 0 8px; font-size:1.95rem; }
.outcomes-head p{ margin:0; line-height:1.65; }
.outcomes-grid{ display:grid; gap:16px; margin-top:18px; }
.outcome-card{
  background:linear-gradient(180deg, rgba(11,42,111,0.05), rgba(255,255,255,1));
  border:1px solid rgba(11,42,111,0.12);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}
.outcome-top{ display:flex; gap:10px; align-items:center; margin-bottom:10px; }
.outcome-icon{
  width:40px; height:40px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(11,42,111,0.10);
  border:1px solid rgba(11,42,111,0.16);
  font-size:18px;
}
.outcome-title{ font-weight:950; color:var(--blue); }
.outcome-text{ color:var(--muted); line-height:1.6; margin:0; }
.outcomes-cta{
  margin-top:18px;
  border:1px solid rgba(215,25,32,0.20);
  background:rgba(215,25,32,0.06);
  border-radius:var(--radius);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.outcomes-cta-title{ font-weight:950; color:var(--red); margin-bottom:4px; }
.outcomes-cta-text{ color:var(--muted); line-height:1.5; }

/* Review strip marquee */
.review-strip{
  padding-top: 10px;
  background: linear-gradient(180deg, rgba(11,42,111,0.03), rgba(255,255,255,1));
}
.review-strip-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.review-strip-head h2{ margin:0; font-size:1.85rem; }
.review-strip-head p{ margin:0; line-height:1.6; }

.marquee{
  border:1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  overflow:hidden;
  padding:12px 0;
}
.marquee-track{
  display:flex;
  align-items:center;
  gap:12px;
  width:max-content;
  animation: marqueeMove 38s linear infinite;
}
@keyframes marqueeMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.marquee:hover .marquee-track{ animation-play-state: paused; }

.chip{
  flex:0 0 auto;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(11,42,111,0.14);
  background: rgba(11,42,111,0.06);
  color: rgba(17,24,39,0.92);
  font-weight:850;
  white-space:nowrap;
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.08);
}
.marquee-track .chip:nth-child(3n){
  background: rgba(215,25,32,0.06);
  border-color: rgba(215,25,32,0.16);
  box-shadow: 0 12px 20px rgba(215,25,32,0.06);
}

.review-strip-foot{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Cards */
.cards-3{ display:grid; gap:18px; margin-top:18px; }
.info-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.info-card h3{ margin:0 0 8px; }
.info-card p{ margin:0; color:var(--muted); line-height:1.6; }

.big-quote{ margin-top:18px; }
.big-quote-inner{
  border:1px solid rgba(11,42,111,0.18);
  background:rgba(11,42,111,0.06);
  border-radius:var(--radius);
  padding:18px;
}
.big-quote-text{
  font-size:1.25rem;
  font-weight:950;
  color:var(--blue);
  margin-bottom:8px;
}
.big-quote-sub{ color:var(--muted); line-height:1.6; }

/* Tuition panels */
.two-col{ display:grid; gap:18px; margin-top:18px; }
.panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.panel h3{ margin:0 0 8px; }
.panel p{ margin:0 0 12px; line-height:1.6; }
.ticks{ margin:0 0 14px 0; padding-left:18px; }
.ticks li{ margin:8px 0; font-weight:700; }

/* Steps */
.steps{ display:grid; gap:16px; margin-top:18px; }
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.step-num{
  width:36px; height:36px;
  border-radius:10px;
  background:rgba(215,25,32,0.12);
  color:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  margin-bottom:10px;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); line-height:1.6; }

/* FAQ */
.faq{
  margin-top:18px;
  display:grid;
  gap:12px;
}
.faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,0.10);
  border-radius:var(--radius);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:16px 18px;
  font-weight:950;
  color:rgba(17,24,39,0.92);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  font-weight:950;
  color:var(--blue);
  font-size:1.2rem;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-body{
  padding:0 18px 16px;
  color:var(--muted);
  line-height:1.65;
}

/* Reviews */
.reviews{ background:#f3f4f6; }
.reviews-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.link{
  color:var(--blue);
  font-weight:950;
  text-decoration:none;
}
.link:hover{ text-decoration:underline; }

.reviews-grid{ display:grid; gap:18px; }
.review-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  padding:18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.review-stars{ font-size:1.05rem; letter-spacing:1px; margin-bottom:10px; }
.review-text{ margin:0 0 12px 0; line-height:1.6; }
.review-author{ font-weight:950; color:var(--blue); }

/* Contact */
.contact-grid{ display:grid; gap:22px; align-items:start; }
.contact-points{ display:grid; gap:10px; margin-top:14px; font-weight:900; }
.callout{
  margin-top:16px;
  border:1px solid rgba(215,25,32,0.22);
  background:rgba(215,25,32,0.07);
  border-radius:var(--radius);
  padding:14px;
}
.callout-title{ font-weight:950; margin-bottom:6px; color:var(--red); }
.callout-text{ font-weight:950; }

.contact-mini{
  margin-top:14px;
  border-top:1px solid rgba(0,0,0,0.08);
  padding-top:12px;
  color:rgba(17,24,39,0.90);
}
.contact-mini-row{ margin:8px 0; }
.contact-mini-row a{ color:var(--blue); font-weight:950; text-decoration:none; }
.contact-mini-row a:hover{ text-decoration:underline; }

.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
label{ display:block; font-weight:950; margin-bottom:12px; }
input, textarea, select{
  width:100%;
  margin-top:6px;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  font-family:inherit;
  font-size:1rem;
  background:#fff;
}
textarea{ resize:vertical; }
.form-note{ margin-top:10px; color:var(--muted); font-size:0.92rem; }

/* Footer */
.footer{
  background:var(--blue);
  color:#fff;
  padding:22px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}
.footer-left{ max-width:640px; }
.footer-brand{ font-weight:950; margin-bottom:4px; }
.footer-sub{ opacity:0.92; line-height:1.5; }
.footer-sub a{ color:#fff; text-decoration:none; font-weight:900; }
.footer-sub a:hover{ text-decoration:underline; }

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer a{
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.footer a:hover{ text-decoration:underline; }

/* Responsive */
@media (min-width: 980px){
  .hero-grid{ grid-template-columns: 1.35fr 0.65fr; }
  .trust-strip{ grid-template-columns: repeat(3, 1fr); }
  .cards-3{ grid-template-columns: repeat(3, 1fr); }
  .two-col{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: repeat(3, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(3, 1fr); }
  .contact-grid{ grid-template-columns: 1fr 0.95fr; }
  .usp-grid{ grid-template-columns: repeat(3, 1fr); }
  .outcomes-grid{ grid-template-columns: repeat(3, 1fr); }

  .mobile-nav{ display:none !important; }
}

@media (max-width: 900px){
  :root{
    --headerH: 94px;
    --anchorGap: 10px;
  }

  .navlinks{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .logo{ max-width:200px; }

  .mobile-nav[hidden]{ display:none; }
  .mobile-nav:not([hidden]){ display:grid; }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}
