:root {
  --navy: #061a30;
  --navy-2: #0a2746;
  --blue: #0a4aa3;
  --gold: #d4a21b;
  --gold-dark: #a77a07;
  --ink: #101828;
  --muted: #4b5565;
  --line: #d9dde6;
  --paper: #ffffff;
  --light: #eef2f7;
  --cream: #fff8e5;
  --danger: #b42318;
  --success: #067647;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 34px rgba(6, 26, 48, .16);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow-container { width: min(100% - 32px, 860px); }

.skip-link {
  position: absolute;
  top: -80px;
  left: 14px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand img, .footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand strong, .footer-brand strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.15;
}

.brand em, .footer-brand em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

.desktop-nav a { padding: 10px 0; }
.desktop-nav a:hover { color: var(--blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-call {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold);
  color: #160f00;
  border-color: var(--gold);
}

.btn-gold:hover { background: #e0b02d; border-color: #e0b02d; }

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-blue:hover { background: #083d86; border-color: #083d86; }

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.btn-outline:hover {
  color: var(--navy);
  background: #fff;
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.section-light { background: var(--light); }
.section-white { background: #fff; }

section { padding: 56px 0; }

.compact-section { padding: 34px 0; }

.hero {
  padding: 42px 0 52px;
  border-bottom: 8px solid var(--gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .78fr);
  gap: 30px;
  align-items: start;
}

.hero-copy { padding-top: 10px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 5px 10px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #fff;
  background: var(--blue);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -.055em;
  max-width: 780px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -.015em;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 22px;
  color: #e6edf7;
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 14px;
}

.trust-strip article {
  padding: 14px;
  background: var(--navy-2);
  border: 1px solid #244867;
  border-radius: var(--radius-sm);
}

.trust-strip strong,
.training-list strong,
.outcome-grid strong {
  display: block;
  font-size: 16px;
}

.trust-strip span,
.training-list span,
.outcome-grid span {
  display: block;
  margin-top: 3px;
  color: #d7e2ee;
  font-size: 13px;
}

.micro-note {
  max-width: 720px;
  margin: 0;
  color: #cfd9e6;
  font-size: 14px;
}

.hero-form-card {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-card-head {
  padding: 20px 20px 14px;
  background: var(--navy-2);
  color: #fff;
}

.form-card-head h2 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -.02em;
}

.form-card-head p {
  margin: 0;
  color: #d7e2ee;
  font-size: 14px;
}

.form-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  color: #160f00;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form { padding: 18px 20px 20px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field { margin-bottom: 12px; }

.field label {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.field label span { color: var(--danger); }
.field label small { color: var(--muted); font-weight: 700; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #b8c0cd;
  border-radius: 10px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea { resize: vertical; min-height: 82px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 74, 163, .18);
}

.field input::placeholder,
.field textarea::placeholder { color: #788393; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 2px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.consent input { margin-top: 2px; accent-color: var(--blue); }

.btn-form {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  font-size: 16px;
}

.privacy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.direct-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.direct-contact a {
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: center;
}

.tight-columns h2 { margin-bottom: 0; }
.tight-columns p { margin: 0; color: var(--muted); font-weight: 600; }

.section-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head.left {
  margin: 0;
  text-align: left;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-dark .section-head p { color: #d7e2ee; }
.section-dark .section-head .eyebrow { color: var(--navy); }

.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card,
.system-card,
.choice-card,
.checklist-card,
.steps-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(6, 26, 48, .08);
}

.numbered-card { padding: 20px; }
.numbered-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.numbered-card p,
.system-card p,
.choice-card p { margin: 0; color: var(--muted); font-size: 15px; }

.cbse-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 34px;
  align-items: center;
}

.cbse-grid .btn { margin-top: 18px; }

.training-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.training-list article {
  padding: 18px;
  background: var(--navy-2);
  border: 1px solid #244867;
  border-radius: var(--radius-sm);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.system-card { padding: 20px; }
.system-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: #160f00;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.program-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.program-grid p { color: var(--muted); font-weight: 600; }

.subject-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.subject-panel span {
  padding: 8px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.checklist-card { padding: 20px; }

.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-weight: 750;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.outcome-grid article {
  padding: 18px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius-sm);
}

.compliance-note {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.mentor-section { padding-bottom: 0; }

.mentor-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) 1fr;
  gap: 34px;
  align-items: end;
}

.mentor-image-card {
  align-self: end;
  max-width: 430px;
  margin-inline: auto;
  background: var(--navy-2);
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.mentor-image-card img {
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.mentor-grid p { color: #d7e2ee; }

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.mentor-stats article {
  padding: 13px;
  background: var(--navy-2);
  border: 1px solid #244867;
  border-radius: var(--radius-sm);
}

.mentor-stats strong { display: block; color: var(--gold); font-size: 20px; line-height: 1.1; }
.mentor-stats span { display: block; margin-top: 4px; color: #d7e2ee; font-size: 13px; font-weight: 700; }

.choose-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.choice-card { padding: 20px; }

.demo-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.demo-grid p { color: var(--muted); font-weight: 600; }
.demo-grid .btn { margin-top: 12px; }

.steps-card { padding: 18px; }
.steps-card article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.steps-card article:last-child { border-bottom: 0; }
.steps-card span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  color: #160f00;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}
.steps-card strong { color: var(--ink); font-size: 17px; }
.steps-card p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; }

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--blue); font-size: 20px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}
.faq-list a { color: var(--blue); font-weight: 900; }

.final-cta { padding: 42px 0; }

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.final-cta p { margin-bottom: 0; color: #d7e2ee; }
.final-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.site-footer {
  padding: 34px 0 20px;
  color: #d7e2ee;
  background: #041222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .75fr .95fr;
  gap: 24px;
}

.site-footer h3 {
  color: #fff;
  font-size: 16px;
}

.site-footer p {
  margin-bottom: 0;
  color: #cbd5e1;
  font-size: 14px;
}

.site-footer a { color: #fff; font-weight: 800; }

.site-footer .footer-brand strong { color: #fff; }
.site-footer .footer-brand em { color: #cbd5e1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #1c344b;
  color: #aebdd0;
  font-size: 13px;
}

.mobile-sticky-cta { display: none; }

.lead-form.was-validated input:invalid,
.lead-form.was-validated select:invalid,
.lead-form.was-validated textarea:invalid {
  border-color: var(--danger);
}

.form-status {
  margin: 0 0 12px;
  padding: 10px 12px;
  color: var(--danger);
  background: #fff1f0;
  border: 1px solid #ffb3ad;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 760px; width: 100%; margin-inline: auto; }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  section { padding: 44px 0; }
  .container { width: min(100% - 24px, var(--container)); }
  .header-inner { min-height: 66px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 14px; }
  .brand em { display: none; }
  .brand img { width: 46px; height: 46px; }
  .text-call { display: none; }
  .hero { padding-top: 28px; }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(32px, 9vw, 44px); }
  h2 { font-size: clamp(25px, 7vw, 34px); }
  .hero-lead { font-size: 16px; }
  .trust-strip,
  .gap-grid,
  .system-grid,
  .program-grid,
  .cbse-grid,
  .demo-grid,
  .mentor-grid,
  .two-column,
  .outcome-grid,
  .final-cta-grid { grid-template-columns: 1fr; }
  .training-list { grid-template-columns: 1fr 1fr; }
  .section-head { text-align: left; margin-bottom: 20px; }
  .check-list { grid-template-columns: 1fr; }
  .mentor-section { padding-bottom: 44px; }
  .mentor-image-card { border-bottom: 2px solid var(--gold); border-radius: 22px; max-width: 360px; }
  .final-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .container { width: min(100% - 20px, var(--container)); }
  .header-actions .btn { display: none; }
  .hero-ctas .btn { width: 100%; }
  .trust-strip,
  .training-list,
  .form-row,
  .direct-contact,
  .choose-grid,
  .footer-grid,
  .mentor-stats { grid-template-columns: 1fr; }
  .lead-form, .form-card-head { padding-left: 16px; padding-right: 16px; }
  .numbered-card, .system-card, .choice-card, .checklist-card { padding: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    font-weight: 900;
  }
  .mobile-sticky-cta a:first-child { color: #fff; background: var(--blue); }
  .mobile-sticky-cta a:last-child { color: #160f00; background: var(--gold); }
}

#demo-form,
section {
  scroll-margin-top: 86px;
}

.thank-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 44px 0;
}

.thank-card {
  max-width: 880px;
  padding: 28px;
  background: var(--navy-2);
  border: 2px solid var(--gold);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.thank-brand {
  margin-bottom: 22px;
}

.thank-brand strong { color: #fff; }
.thank-brand em { color: #d7e2ee; }

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.thank-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.thank-next article {
  padding: 16px;
  background: var(--navy);
  border: 1px solid #244867;
  border-radius: var(--radius-sm);
}

.thank-next strong,
.thank-next span {
  display: block;
}

.thank-next strong { color: #fff; }
.thank-next span { margin-top: 4px; color: #d7e2ee; font-size: 14px; }

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 720px) {
  .thank-card { padding: 22px 16px; }
  .thank-next { grid-template-columns: 1fr; }
  .thank-actions .btn { width: 100%; }
}

.policy-page h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 50px);
}

.policy-page h2 {
  margin-top: 24px;
  font-size: 24px;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  font-weight: 600;
}

.policy-page a {
  color: var(--blue);
  font-weight: 900;
}
