* {
  box-sizing: border-box;
}

:root {
  --green-deep: #03341E;
  --green-dark: #064D2B;
  --green: #096837;
  --green-soft: #13844A;
  --gold: #FFCC26;
  --gold-dark: #D9A108;
  --white: #FFFFFF;
  --off-white: #F7FBF8;
  --mint: #C4F5DA;
  --ink: #112318;
  --muted: #66756B;
  --line: #DDE8E0;
  --shadow: 0 24px 70px rgba(3, 52, 30, 0.16);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

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

.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,232,224,.85);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 292px;
  height: 78px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  border-radius: 18px;
  padding: 6px 10px;
  box-shadow: 0 12px 35px rgba(3, 52, 30, .18);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--green-deep);
  font-weight: 800;
}

.nav-links a:not(.btn):hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green-deep);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-deep);
  background: linear-gradient(135deg, var(--gold), #FFE680);
  box-shadow: 0 18px 38px rgba(255, 204, 38, .28);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
}

.btn-outline {
  color: var(--green-deep);
  background: white;
  border-color: var(--line);
}

.btn-light {
  background: white;
  color: var(--green-deep);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  color: var(--green-deep);
  background: var(--gold);
}

.btn-full {
  width: 100%;
}

.section-gradient {
  color: white;
  background:
    radial-gradient(circle at 84% 8%, rgba(255,204,38,.24), transparent 26%),
    radial-gradient(circle at 12% 85%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(135deg, var(--green-deep), var(--green));
  overflow: hidden;
}

.hero {
  padding: 90px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 16px;
}

.kicker {
  color: var(--green);
}

.kicker.gold {
  color: var(--gold);
}

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

h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(3.1rem, 7.2vw, 6.65rem);
  line-height: .93;
  letter-spacing: -.08em;
  margin-bottom: 24px;
}

.hero-lead {
  color: rgba(255,255,255,.82);
  font-size: 1.24rem;
  max-width: 720px;
  margin-bottom: 34px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  overflow: hidden;
  max-width: 720px;
}

.hero-metrics div {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-metrics span {
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: .9rem;
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.premium-card {
  padding: 26px;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.premium-card img {
  border-radius: 24px;
  background: rgba(0,0,0,.06);
}

.hero-service-card {
  background: white;
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,204,38,.18);
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.hero-service-card h2 {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.hero-service-card p {
  color: var(--green);
  font-weight: 900;
}

.hero-service-card ul {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.section-pad {
  padding: 92px 0;
}

.trust-strip {
  padding: 26px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(3, 52, 30, .05);
}

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

h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--green-deep);
  font-size: clamp(2.15rem, 4.5vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

.section-head p,
.split-grid p,
.academy-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.division-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 15px 45px rgba(3, 52, 30, .08);
}

.division-card.featured {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: white;
}

.division-card .icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  font-size: 1.8rem;
  background: rgba(255,204,38,.20);
  margin-bottom: 18px;
}

.division-card h3 {
  color: var(--green-deep);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.division-card.featured h3 {
  color: white;
}

.division-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.division-card.featured p {
  color: rgba(255,255,255,.78);
}

.division-card a {
  color: var(--green);
  font-weight: 900;
}

.division-card.featured a {
  color: var(--gold);
}

.dark-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,204,38,.16), transparent 26%),
    linear-gradient(135deg, var(--green-deep), #052C1A);
  color: white;
}

.split-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.dark-section h2 {
  color: white;
}

.large {
  font-size: 1.16rem;
  color: rgba(255,255,255,.78) !important;
}

.tagline-card {
  margin: 28px 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 22px;
}

.tagline-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.tagline-card span {
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list div {
  display: grid;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
}

.service-list strong {
  color: white;
}

.service-list span {
  color: rgba(255,255,255,.70);
}

.calculator-card {
  background: white;
  color: var(--ink);
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}

.calculator-card h3 {
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.calculator-card p {
  color: var(--muted);
}

label {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: var(--green-deep);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  font: inherit;
  outline: none;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,204,38,.18);
}

.estimate {
  margin: 24px 0;
  padding: 22px;
  border-radius: 22px;
  background: var(--off-white);
  border: 1px solid var(--line);
}

.estimate span,
.estimate small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.estimate strong {
  display: block;
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1.1;
  margin: 6px 0;
}

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

.program-card {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  overflow: hidden;
}

.program-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -44px;
  top: -44px;
  background: rgba(255,204,38,.18);
  border-radius: 50%;
}

.program-card span {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: .95rem;
}

.program-card h3 {
  color: var(--green-deep);
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 14px 0 10px;
}

.program-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.academy-section {
  background: var(--off-white);
}

.academy-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.warning-note {
  background: white;
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  box-shadow: 0 12px 36px rgba(3,52,30,.06);
}

.warning-note strong {
  color: var(--green-deep);
}

.course-list {
  display: grid;
  gap: 14px;
}

.course-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(3,52,30,.06);
}

.course-list span {
  grid-row: span 2;
  min-width: 64px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green-deep);
  color: var(--gold);
  font-weight: 900;
}

.course-list strong {
  color: var(--green-deep);
  font-size: 1.15rem;
}

.course-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

.school-section {
  background: white;
}

.image-card {
  border-radius: 34px;
  min-height: 420px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,204,38,.2), transparent 25%),
    linear-gradient(135deg, var(--green-deep), var(--green));
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.mock-dashboard {
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,.92);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

.mock-top {
  width: 46%;
  height: 22px;
  background: var(--green-deep);
  border-radius: 999px;
  margin-bottom: 26px;
}

.mock-row {
  height: 16px;
  width: 62%;
  background: #DDE8E0;
  border-radius: 999px;
  margin-bottom: 14px;
}

.mock-row.wide {
  width: 84%;
  background: var(--gold);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.mock-grid span {
  height: 92px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.check-grid div {
  padding: 14px 14px 14px 42px;
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--green-deep);
  font-weight: 800;
}

.check-grid div::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--green);
  font-weight: 900;
}

.platform-section {
  background: linear-gradient(180deg, var(--off-white), white);
}

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

.platform-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 42px rgba(3,52,30,.06);
}

.platform-grid strong {
  display: block;
  color: var(--green-deep);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.platform-grid span {
  color: var(--muted);
}

.pricing {
  background: var(--off-white);
}

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

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 15px 45px rgba(3,52,30,.08);
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.plan {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(9,104,55,.10);
  color: var(--green);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.featured .plan {
  background: var(--gold);
  color: var(--green-deep);
}

.price-card h3 {
  color: var(--green-deep);
  font-size: 1.35rem;
  line-height: 1.15;
}

.price {
  color: var(--green-deep);
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -.06em;
  margin: 8px 0;
}

.price-card p,
.price-card li {
  color: var(--muted);
}

.price-card ul {
  padding-left: 20px;
  margin: 20px 0;
}

.cta-section {
  padding: 70px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,204,38,.2), transparent 30%),
    linear-gradient(135deg, var(--green-deep), var(--green));
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(3,52,30,.04);
}

summary {
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 900;
  font-size: 1.05rem;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards a {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  color: var(--green-deep);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(3,52,30,.04);
}

.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-note {
  color: var(--muted);
  font-size: .88rem;
  margin: 14px 0 0;
}

.footer {
  color: white;
  background: #022616;
  padding: 64px 0 24px;
}

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

.footer-logo {
  width: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  padding: 10px;
  margin-bottom: 18px;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255,255,255,.70);
}

.footer h4 {
  margin: 0 0 14px;
  color: white;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  margin-top: 36px;
}

@media (max-width: 1050px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 84px 20px auto 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .academy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .division-grid,
  .program-grid,
  .pricing-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .brand {
    width: 260px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner,
  .cta-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    width: 222px;
    height: 66px;
  }

  .hero {
    padding: 64px 0;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-metrics,
  .division-grid,
  .program-grid,
  .pricing-grid,
  .platform-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 68px 0;
  }

  .premium-card,
  .calculator-card,
  .lead-form {
    padding: 22px;
    border-radius: 24px;
  }
}
