html {
  scroll-behavior: smooth;
}

.lp-body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: #0f243f;
  background: #f5f7fb;
}

.lp-hidden {
  display: none !important;
}

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

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 36, 63, 0.08);
}

.lp-nav-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-logo {
  width: clamp(140px, 18vw, 210px);
  height: auto;
  object-fit: contain;
}

.lp-desktop-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-desktop-menu a,
.lp-mobile-menu a {
  color: #002147;
  font-weight: 800;
  text-decoration: none;
}

.lp-menu-btn,
.lp-close-btn {
  border: 0;
  background: transparent;
  color: #002147;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lp-menu-btn {
  display: none;
}

.lp-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100vh;
  padding: 58px 24px 24px;
  background: #ffffff;
  box-shadow: -22px 0 42px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 0.28s ease;
  z-index: 80;
}

.lp-mobile-menu.open {
  transform: translateX(0);
}

.lp-mobile-menu ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lp-hero {
  position: relative;
  min-height: 81vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.lp-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 33, 71, 0.82), rgba(0, 33, 71, 0.38) 46%, rgba(0, 0, 0, 0.08));
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  min-height: 81vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 40px;
}

.lp-hero-copy {
  max-width: 710px;
  color: #ffffff;
}

.lp-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lp-hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.lp-hero-copy p:not(.lp-kicker) {
  margin: 20px 0 0;
  max-width: 650px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.45;
  font-weight: 500;
}

.lp-urgency {
  display: inline-flex;
  margin-top: 26px;
  padding: 12px 18px;
  background: #e48c07;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.lp-form-shell {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: 8px;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.lp-form-head {
  padding: 10px 12px;
  border-bottom: 1px solid #dbe4ef;
  text-align: center;
}

.lp-form-head h2 {
  margin: 0;
  color: #002147;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.lp-form-head p {
  margin: 4px 0 0;
  color: #5d6f82;
  font-size: 13px;
  line-height: 1.35;
}

.lp-form {
  display: grid;
  gap: 9px;
  padding: 12px;
}

.lp-form-label {
  display: block;
  margin-bottom: 4px;
  color: #002147;
  font-size: 13px;
  font-weight: 800;
}

.lp-form-control {
  width: 100%;
  height: 38px;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #ffffff;
  color: #0f243f;
  font: inherit;
  font-size: 14px;
  padding: 8px 11px;
  outline: none;
}

.lp-form-control:focus {
  border-color: #002147;
  box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.12);
}

.lp-form-submit {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: #002147;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.2s ease;
}

.lp-form-submit:hover {
  background: #0a2f63;
}

.lp-form-alert {
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 13px;
  line-height: 1.35;
}

.lp-form-alert.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.lp-form-alert.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.lp-brochure {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 50;
  transform: translateY(-50%);
  padding: 16px 12px;
  border-radius: 8px 0 0 8px;
  background: #e48c07;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  writing-mode: vertical-rl;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.lp-section {
  padding: 72px 0;
  background: #ffffff;
}

.lp-section:nth-of-type(even) {
  background: #f5f7fb;
}

.lp-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.lp-section-head span {
  display: block;
  margin-bottom: 9px;
  color: #e48c07;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lp-section-head h2 {
  margin: 0;
  color: #002147;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.lp-section-head h3 {
  margin: 0;
  color: #002147;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.lp-section-head p {
  margin: 16px 0 0;
  color: #486179;
  font-size: 18px;
  line-height: 1.6;
}

.lp-highlight-section {
  position: relative;
  padding-top: 66px;
  background:
    linear-gradient(135deg, rgba(0, 33, 71, 0.04), rgba(228, 140, 7, 0.08)),
    #ffffff;
  overflow: hidden;
}

.lp-highlight-section::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 60px;
  width: 210px;
  height: 210px;
  border: 36px solid rgba(228, 140, 7, 0.12);
  border-radius: 50%;
}

.lp-highlight-section .lp-container {
  position: relative;
  z-index: 1;
}

.lp-highlight-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.lp-highlight-grid article,
.lp-feature-grid article,
.lp-program-card,
.lp-faq-list details,
.lp-testimonial-grid article {
  border: 1px solid #dbe4ef;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 36, 63, 0.07);
}

.lp-highlight-grid article {
  position: relative;
  min-height: 156px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  color: #002147;
  border-radius: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.lp-highlight-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(228, 140, 7, 0.12);
}

.lp-highlight-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 163, 26, 0.08));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.lp-highlight-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 140, 7, 0.42);
  box-shadow: 0 22px 46px rgba(15, 36, 63, 0.13);
}

.lp-highlight-grid article:hover::before {
  opacity: 1;
}

.lp-highlight-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.lp-highlight-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 140, 7, 0.28);
  border-radius: 14px;
  background: #fff7e8;
  color: #b56400;
  font-size: 14px;
  font-weight: 900;
}

.lp-highlight-lead {
  grid-row: span 2;
  background:
    radial-gradient(circle at 25% 18%, rgba(242, 163, 26, 0.34), transparent 30%),
    linear-gradient(160deg, rgba(242, 163, 26, 0.18), rgba(255, 255, 255, 0)),
    #002147 !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.lp-highlight-lead strong {
  position: relative;
  z-index: 1;
  font-size: clamp(74px, 9vw, 118px);
  line-height: 0.9;
  font-weight: 900;
  color: #f2a31a;
}

.lp-highlight-lead span {
  position: relative;
  z-index: 1;
  max-width: 250px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.lp-trust-strip {
  padding: 18px 0;
  background: #002147;
  color: #ffffff;
}

.lp-trust-strip p {
  margin: 0;
  text-align: center;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.45;
}

.lp-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.lp-program-card {
  padding: 0;
  overflow: hidden;
}

.lp-program-card summary {
  min-height: 94px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  color: #002147;
}

.lp-program-card summary::-webkit-details-marker {
  display: none;
}

.lp-program-card summary span {
  font-size: 25px;
  font-weight: 900;
}

.lp-program-card summary small {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: #e48c07;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lp-program-card[open] summary {
  background: #002147;
  color: #ffffff;
}

.lp-program-card h3 {
  margin: 22px 22px 10px;
  color: #002147;
  font-size: 20px;
  font-weight: 900;
}

.lp-program-card p,
.lp-program-card ul {
  margin: 0 22px 24px;
  color: #314a62;
  line-height: 1.55;
}

.lp-program-card ul {
  padding-left: 20px;
}

.lp-program-card li + li {
  margin-top: 7px;
}

.lp-why {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

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

.lp-feature-grid article {
  min-height: 210px;
  padding: 24px;
}

.lp-feature-grid h3 {
  margin: 0 0 12px;
  color: #002147;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.lp-feature-grid p {
  margin: 0;
  color: #486179;
  line-height: 1.58;
}

.lp-placement-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.lp-placement-grid article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #dbe4ef;
}

.lp-placement-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
}

.lp-placement-grid span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  background: rgba(0, 33, 71, 0.9);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.lp-stat-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-stat-row div {
  padding: 24px;
  background: #002147;
  color: #ffffff;
  text-align: center;
}

.lp-stat-row strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.lp-stat-row span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
}

.lp-scholarship {
  background: #f5f7fb;
}

.lp-scholarship-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: center;
}

.lp-scholarship-wrap p {
  margin: 0 0 12px;
  color: #314a62;
  font-size: 22px;
  font-weight: 800;
}

.lp-scholarship-wrap img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(15, 36, 63, 0.16);
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 22px;
  background: #e48c07;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.lp-campus-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.lp-campus-grid div {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.lp-campus-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 33, 71, 0.82));
}

.lp-campus-grid div:nth-child(1),
.lp-campus-grid div:nth-child(2) {
  grid-column: span 3;
}

.lp-campus-grid div:nth-child(n+3) {
  grid-column: span 2;
}

.lp-campus-grid span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.lp-testimonials {
  background: #f5f7fb;
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-testimonial-grid article {
  padding: 24px;
}

.lp-testimonial-grid img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border: 4px solid #e48c07;
  border-radius: 50%;
  object-fit: cover;
}

.lp-testimonial-grid p {
  margin: 0;
  color: #314a62;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

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

.lp-faq-list details {
  padding: 0;
}

.lp-faq-list summary {
  padding: 22px 24px;
  color: #002147;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.lp-faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: #486179;
  font-size: 17px;
  line-height: 1.6;
}

.lp-final-cta {
  padding: 72px 0;
  color: #002147;
  text-align: center;
}

.lp-final-cta p {
  margin: 0 0 10px;
  color: #f2a31a;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .lp-highlight-grid,
  .lp-placement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-program-grid,
  .lp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .lp-desktop-menu {
    display: none;
  }

  .lp-menu-btn {
    display: inline-flex;
  }

  .lp-hero {
    background: #f5f7fb;
  }

  .lp-hero-shade {
    display: none;
  }

  .lp-hero-inner {
    width: min(680px, calc(100% - 24px));
    min-height: 0;
    padding: 18px 0 34px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-hero-copy {
    padding: 22px;
    background: #002147;
  }

  .lp-form-shell {
    max-width: 100%;
    justify-self: stretch;
  }

  .lp-hero-copy h1 {
    font-size: 34px;
  }

  .lp-hero-copy p:not(.lp-kicker) {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .lp-section {
    padding: 52px 0;
  }

  .lp-program-grid,
  .lp-feature-grid,
  .lp-placement-grid,
  .lp-stat-row,
  .lp-scholarship-wrap,
  .lp-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .lp-highlight-section {
    padding: 34px 0 40px;
  }

  .lp-highlight-section::before {
    display: none;
  }

  .lp-highlight-section .lp-section-head {
    margin-bottom: 18px;
  }

  .lp-highlight-section .lp-section-head span {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .lp-highlight-section .lp-section-head h3 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.16;
  }

  .lp-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lp-highlight-grid article {
    min-height: 108px;
    padding: 13px;
    gap: 10px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 36, 63, 0.08);
  }

  .lp-highlight-grid article:hover {
    transform: none;
  }

  .lp-highlight-grid article::after {
    right: -46px;
    bottom: -48px;
    width: 92px;
    height: 92px;
  }

  .lp-highlight-grid p {
    font-size: 13px;
    line-height: 1.24;
  }

  .lp-highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 11px;
  }

  .lp-highlight-lead {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 78px !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start !important;
    padding: 14px 16px !important;
  }

  .lp-highlight-lead strong {
    flex: 0 0 auto;
    font-size: 50px;
  }

  .lp-highlight-lead span {
    max-width: none;
    font-size: 17px;
    line-height: 1.15;
  }

  .lp-highlight-grid article,
  .lp-feature-grid article {
    min-height: auto;
  }

  .lp-placement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-placement-grid article,
  .lp-placement-grid img {
    min-height: 190px;
  }

  .lp-scholarship-wrap {
    gap: 22px;
  }

  .lp-campus-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .lp-campus-grid div:nth-child(n) {
    grid-column: span 1;
  }

  .lp-brochure {
    padding: 12px 9px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .lp-container,
  .lp-nav-inner,
  .lp-hero-inner {
    width: min(100% - 20px, 100%);
  }

  .lp-hero-copy {
    padding: 18px;
  }

  .lp-hero-copy h1 {
    font-size: 29px;
  }

  .lp-placement-grid {
    grid-template-columns: 1fr;
  }
}
