:root {
  --navy-950: #031a37;
  --navy-900: #052b5f;
  --navy-800: #073b82;
  --blue-700: #0757b8;
  --blue-600: #0874d1;
  --blue-500: #079ce3;
  --blue-100: #dff2ff;
  --blue-50: #f1f9ff;
  --gold-500: #ffb21c;
  --gold-400: #ffc947;
  --gold-100: #fff3cf;
  --green-600: #159765;
  --ink: #102a43;
  --muted: #5d7187;
  --line: #dce7f1;
  --surface: #ffffff;
  --soft: #f5f9fd;
  --danger: #c73535;
  --shadow-sm: 0 8px 24px rgba(11, 54, 98, 0.08);
  --shadow-md: 0 22px 55px rgba(8, 47, 91, 0.13);
  --shadow-lg: 0 32px 80px rgba(2, 30, 68, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Be Vietnam Pro", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
figure,
fieldset {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
b {
  line-height: 1.2;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

:focus-visible {
  outline: 3px solid rgba(255, 178, 28, 0.8);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--blue-600);
}

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

.section {
  position: relative;
  padding: 104px 0;
}

.section--soft {
  background: var(--soft);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 17px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 8px;
  color: var(--gold-500);
}

.eyebrow--light {
  color: #8ed2ff;
}

.eyebrow--gold {
  color: var(--gold-400);
}

.section-heading {
  max-width: 700px;
}

.section-heading--center {
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.feature-copy h2,
.pricing-copy h2,
.goal-copy h2,
.lookup-copy h2,
.schedule-copy h2,
.faq-copy h2,
.register-aside h2 {
  margin-bottom: 20px;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
}

.section-lead {
  color: #3e5872;
  font-size: 1.08rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--blue-700);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 12px 25px rgba(7, 87, 184, 0.22);
}

.button--primary:hover {
  box-shadow: 0 15px 32px rgba(7, 87, 184, 0.3);
}

.button--gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 14px 28px rgba(255, 178, 28, 0.22);
}

.button--gold:hover {
  box-shadow: 0 16px 34px rgba(255, 178, 28, 0.3);
}

.button--ghost {
  color: var(--navy-900);
  background: #fff;
  border-color: #cbdbe8;
}

.button--ghost:hover {
  border-color: var(--blue-600);
}

.button--light {
  color: var(--navy-900);
  background: #fff;
}

.button--outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--large {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 0.94rem;
}

.button--block {
  width: 100%;
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

/* Top bar and navigation */
.topbar {
  color: #e6f5ff;
  background: var(--navy-950);
  font-size: 0.74rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.topbar p {
  display: flex;
  align-items: center;
  margin: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: #3ee69d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(62, 230, 157, 0.13);
}

.topbar__links {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 228, 239, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(3, 34, 72, 0.09);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  color: var(--navy-900);
}

.brand__mark {
  position: relative;
  display: block;
  flex: 0 0 50px;
  width: 50px;
  height: 48px;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}

.brand__mark img {
  position: absolute;
  top: -17px;
  left: -17px;
  width: 84px;
  max-width: none;
  height: 84px;
  object-fit: cover;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__copy strong {
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.brand__copy > span {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: clamp(13px, 1.4vw, 24px);
  align-items: center;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #304b67;
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 3px;
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue-700);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 22px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  background: var(--blue-50);
  border: 1px solid #cfe4f6;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.mobile-menu__inner {
  display: grid;
  padding-top: 14px;
  padding-bottom: 22px;
}

.mobile-menu__inner > a:not(.button) {
  padding: 13px 4px;
  color: #28445f;
  border-bottom: 1px solid #edf3f7;
  font-weight: 650;
}

.mobile-menu .button {
  margin-top: 15px;
}

/* Hero */
.hero {
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 0;
  background: linear-gradient(180deg, #f4faff 0%, #fff 86%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 88%;
  background-image: linear-gradient(rgba(7, 87, 184, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 87, 184, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero__glow--one {
  top: -220px;
  right: -160px;
  width: 580px;
  height: 580px;
  background: rgba(38, 163, 235, 0.13);
}

.hero__glow--two {
  bottom: 80px;
  left: -260px;
  width: 520px;
  height: 520px;
  background: rgba(255, 193, 64, 0.08);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.hero__content h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(2.5rem, 4.8vw, 4.55rem);
  font-weight: 800;
  line-height: 1.06;
}

.hero__content h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #405b76;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.75;
}

.hero__actions,
.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 18px;
  padding: 0;
  color: #304e6b;
  font-size: 0.82rem;
  font-weight: 650;
  list-style: none;
}

.hero__checks li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero__checks span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  color: var(--green-600);
  background: #e2f8ef;
  border-radius: 50%;
  font-size: 0.72rem;
  place-items: center;
}

.legal-inline {
  max-width: 670px;
  margin-bottom: 0;
  color: #718497;
  font-size: 0.72rem;
  line-height: 1.55;
}

.hero__visual {
  position: relative;
  min-width: 0;
  padding: 24px 0 46px 20px;
}

.hero__image-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #dbeefe;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 38px 38px 38px 92px;
  box-shadow: var(--shadow-lg);
}

.hero__image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 48, 103, 0.06), transparent 42%), linear-gradient(0deg, rgba(4, 48, 103, 0.08), transparent 40%);
  content: "";
}

.hero__image-frame img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(202, 224, 240, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.floating-card--price {
  top: 52px;
  left: -10px;
  flex-direction: column;
  padding: 17px 20px;
  border-radius: 18px;
}

.floating-card--price span,
.floating-card--price small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.floating-card--price strong {
  margin: 2px 0;
  color: var(--blue-700);
  font-size: 1.35rem;
  font-weight: 800;
}

.floating-card--learning {
  right: -8px;
  bottom: 9px;
  gap: 12px;
  align-items: center;
  padding: 13px 17px;
  border-radius: 17px;
}

.floating-card--learning > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card--learning strong {
  font-size: 0.82rem;
}

.floating-card--learning small {
  color: var(--muted);
  font-size: 0.66rem;
}

.floating-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 12px;
  font-size: 0.75rem;
  place-items: center;
}

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -15px 45px rgba(8, 54, 98, 0.07);
}

.hero-facts > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 24px 28px;
}

.hero-facts > div:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: 0;
  bottom: 26px;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-facts strong {
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  align-items: center;
}

.intro-grid .section-heading p:not(.eyebrow) {
  color: #48617a;
}

.answer-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e7f2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.answer-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(var(--blue-500), var(--blue-700));
  content: "";
}

.answer-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.answer-card__label {
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-card__updated {
  color: var(--muted);
  font-size: 0.66rem;
}

.answer-list {
  margin-bottom: 0;
}

.answer-list > div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid #e5edf4;
}

.answer-list dt {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 750;
}

.answer-list dd {
  margin: 0;
  color: #50677e;
  font-size: 0.82rem;
}

/* Banners and module cards */
.wide-banner {
  margin-bottom: 42px;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.wide-banner img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.wide-banner figcaption,
.goal-visual figcaption {
  padding: 10px 18px;
  color: #60778d;
  background: #fff;
  font-size: 0.67rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.module-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  min-width: 0;
  padding: 27px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe7f0;
  border-radius: 23px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.module-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.module-card:hover,
.module-card.is-selected {
  border-color: rgba(7, 116, 209, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.module-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: var(--card-tint, #e8f6ff);
  border-radius: 50%;
  content: "";
  opacity: 0.7;
}

.module-card--computer { --card-color: #1766c0; --card-tint: #dceeff; }
.module-card--online { --card-color: #008bba; --card-tint: #d9f6ff; }
.module-card--documents { --card-color: #3c62c5; --card-tint: #e4eaff; }
.module-card--sheets { --card-color: #168a61; --card-tint: #daf5e9; }
.module-card--presentation { --card-color: #e47824; --card-tint: #fff0df; }

.module-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.module-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--card-color);
  border-radius: 16px;
  box-shadow: 0 11px 22px color-mix(in srgb, var(--card-color) 25%, transparent);
  font-size: 1.45rem;
  font-weight: 500;
  place-items: center;
}

.module-number {
  color: var(--card-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.module-card__eyebrow {
  margin-bottom: 6px;
  color: var(--card-color);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.module-card h3 {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 800;
}

.module-card__vi {
  min-height: 50px;
  margin-bottom: 18px;
  color: #60768b;
  font-size: 0.8rem;
  font-weight: 550;
}

.benefit-list {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  padding: 0;
  color: #36516c;
  font-size: 0.78rem;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
}

.benefit-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  color: var(--card-color);
  background: var(--card-tint);
  border-radius: 50%;
  content: "✓";
  font-size: 0.58rem;
  font-weight: 800;
  place-items: center;
}

.module-detail {
  margin-bottom: 23px;
  color: #496279;
  font-size: 0.75rem;
}

.module-detail summary {
  width: fit-content;
  color: var(--card-color);
  cursor: pointer;
  font-weight: 700;
}

.module-detail > div {
  margin-top: 11px;
  padding: 14px;
  background: #f6f9fc;
  border-radius: 12px;
}

.module-detail p:last-child {
  margin-bottom: 0;
}

.module-card__footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e2ebf2;
}

.module-card__footer > span {
  display: flex;
  flex-direction: column;
}

.module-card__footer small {
  color: var(--muted);
  font-size: 0.58rem;
}

.module-card__footer strong {
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
}

.select-module {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: var(--card-color);
  background: var(--card-tint);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 750;
}

.select-module[aria-pressed="true"] {
  color: #fff;
  background: var(--card-color);
}

/* Calculator */
.pricing-section {
  overflow: hidden;
  color: #dcecff;
  background: var(--navy-950);
}

.pricing-section::before {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(4, 142, 224, 0.28), transparent 68%);
  content: "";
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.pricing-copy h2 {
  color: #fff;
}

.pricing-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #b8cce0;
}

.calculator {
  padding: 23px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.calculator__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.calculator__list label {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 10px 13px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.calculator__list label:hover,
.calculator__list label:has(input:checked) {
  background: #eff8ff;
  border-color: #cce6f8;
}

.calculator__list label > span {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.calculator__list input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--blue-600);
}

.calculator__list i {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--blue-700);
  background: #dbf0ff;
  border-radius: 9px;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.calculator__list b,
.calculator__list > label > strong {
  font-size: 0.78rem;
}

.calculator__list > label > strong {
  color: #38536c;
  white-space: nowrap;
}

.calculator__total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 19px;
  padding: 23px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  border-radius: 20px;
}

.calculator__total > div {
  display: flex;
  flex-direction: column;
}

.calculator__total span {
  color: #b8d6ee;
  font-size: 0.66rem;
}

.calculator__total strong {
  font-size: 1.05rem;
}

.calculator__amount {
  text-align: right;
}

.calculator__amount strong {
  color: var(--gold-400);
  font-size: 1.5rem;
}

.calculator__total p,
.calculator__total .button {
  grid-column: 1 / -1;
}

.calculator__total p {
  min-height: 22px;
  margin: 0;
  color: #cde1f2;
  font-size: 0.68rem;
}

/* E-learning */
.feature-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.feature-media,
.schedule-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e5f4ff;
  border: 1px solid #cee2f2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 69% center;
}

.media-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 7px 11px;
  color: #244866;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(195, 218, 235, 0.9);
  border-radius: 9px;
  font-size: 0.63rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 28px 0;
}

.feature-list > div {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px;
  background: var(--blue-50);
  border: 1px solid #d6eafa;
  border-radius: 15px;
}

.feature-list > div > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--blue-700);
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 5px 12px rgba(7, 87, 184, 0.1);
  font-size: 0.67rem;
  font-weight: 800;
  place-items: center;
}

.feature-list p {
  display: flex;
  flex-direction: column;
  margin: 1px 0 0;
}

.feature-list strong {
  color: var(--navy-900);
  font-size: 0.78rem;
}

.feature-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

.microcopy {
  margin: 12px 0 0;
  color: #718599;
  font-size: 0.68rem;
  line-height: 1.55;
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.roadmap li {
  position: relative;
  min-width: 0;
  padding: 20px 17px;
  background: #fff;
  border: 1px solid #dbe7f0;
  border-radius: 18px;
}

.roadmap li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: -18px;
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--blue-700);
  background: #fff;
  border: 1px solid #cfe2f1;
  border-radius: 50%;
  content: "›";
  font-size: 1rem;
  font-weight: 800;
  place-items: center;
}

.roadmap li > span {
  display: block;
  margin-bottom: 23px;
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.roadmap strong {
  display: block;
  min-height: 39px;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 0.84rem;
}

.roadmap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.55;
}

/* Goal 80 */
.goal-section {
  overflow: hidden;
  color: #dcecff;
  background: linear-gradient(125deg, #031d42, #063b82 74%, #075aa9);
}

.goal-section::before {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(4, 141, 224, 0.26), transparent 65%);
  content: "";
}

.goal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 65px;
  align-items: center;
}

.goal-copy h2 {
  color: #fff;
}

.goal-copy > p:not(.eyebrow) {
  color: #c4d8ea;
}

.goal-copy > p strong {
  color: #fff;
}

.goal-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 27px 0 29px;
  padding: 0;
  list-style: none;
}

.goal-conditions li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 57px;
  padding: 10px 13px;
  color: #dfeefa;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  font-size: 0.7rem;
}

.goal-conditions span {
  display: grid;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 10px;
  font-size: 0.64rem;
  font-weight: 800;
  place-items: center;
}

.goal-visual {
  margin-bottom: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-radius: 27px;
  box-shadow: var(--shadow-lg);
}

.goal-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 73% center;
}

.goal-visual figcaption {
  color: #6b7e91;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.audience-card {
  min-width: 0;
  padding: 25px 20px;
  background: #fff;
  border: 1px solid #dae6ef;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.audience-card > span {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--blue-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.audience-card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.notice {
  display: flex;
  gap: 11px;
  align-items: center;
  max-width: 840px;
  margin: 28px auto 0;
  padding: 13px 17px;
  color: #526b81;
  background: #f3f8fc;
  border: 1px solid #dbe8f1;
  border-radius: 13px;
  font-size: 0.72rem;
  text-align: left;
}

.notice span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: #fff;
  background: var(--blue-600);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
}

/* School lookup */
.lookup-section {
  overflow: hidden;
  color: #d7e8f8;
  background: #062d61;
}

.lookup-section::after {
  position: absolute;
  right: -180px;
  bottom: -290px;
  width: 630px;
  height: 630px;
  background: radial-gradient(circle, rgba(9, 157, 227, 0.32), transparent 68%);
  content: "";
}

.lookup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.lookup-copy h2 {
  color: #fff;
}

.lookup-copy > p:not(.eyebrow) {
  color: #bdd1e3;
}

.lookup-copy ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: #d6e8f8;
  font-size: 0.78rem;
  list-style: none;
}

.lookup-copy li {
  position: relative;
  padding-left: 22px;
}

.lookup-copy li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #4de0a4;
  content: "✓";
  font-weight: 800;
}

.lookup-card {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field {
  min-width: 0;
  margin-bottom: 16px;
}

.field label,
.module-choice legend,
.lead-dialog label {
  display: block;
  margin-bottom: 7px;
  color: #24435f;
  font-size: 0.72rem;
  font-weight: 700;
}

.field label em,
.consent em {
  color: var(--danger);
  font-style: normal;
}

.field input,
.field select,
.lead-dialog textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ccdae5;
  border-radius: 11px;
  outline: none;
  font-size: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  cursor: pointer;
}

.field input::placeholder {
  color: #9aa9b7;
}

.field input:focus,
.field select:focus,
.lead-dialog textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(7, 116, 209, 0.1);
}

.field.has-error input,
.field.has-error select {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.62rem;
}

.lookup-result {
  gap: 14px;
  align-items: flex-start;
  margin-top: 19px;
  padding: 17px;
  background: #fff9e9;
  border: 1px solid #f2d687;
  border-radius: 14px;
}

.lookup-result:not([hidden]) {
  display: flex;
}

.lookup-result__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #7a5300;
  background: #ffe7a7;
  border-radius: 10px;
  font-weight: 800;
  place-items: center;
}

.lookup-result strong {
  color: #5e430b;
  font-size: 0.78rem;
}

.lookup-result p {
  margin: 5px 0 8px;
  color: #7d682f;
  font-size: 0.7rem;
}

.lookup-result a {
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 700;
}

/* Schedule */
.schedule-grid {
  grid-template-columns: 1.02fr 0.98fr;
}

.schedule-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 76% center;
}

.empty-state {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0;
  padding: 18px;
  background: #fff;
  border: 1px solid #d7e5ef;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.empty-state > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 12px;
  font-size: 1.1rem;
  place-items: center;
}

.empty-state strong {
  color: var(--navy-900);
  font-size: 0.85rem;
}

.empty-state p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 85px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-copy p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #d8e4ed;
}

.faq-item {
  border-bottom: 1px solid #d8e4ed;
}

.faq-item summary {
  position: relative;
  padding: 21px 48px 21px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  content: "";
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-item summary span::after {
  top: 1px;
  right: 0;
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item > div {
  padding: 0 52px 19px 0;
}

.faq-item p {
  margin: 0;
  color: #536a80;
  font-size: 0.78rem;
}

/* Registration */
.register-section {
  overflow: hidden;
  color: #d9e9f8;
  background: linear-gradient(135deg, #031a37 0%, #052f66 60%, #06488a 100%);
}

.register-section::before,
.register-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.register-section::before {
  top: -260px;
  right: -120px;
  width: 580px;
  height: 580px;
  background: rgba(10, 155, 227, 0.12);
}

.register-section::after {
  bottom: -320px;
  left: -240px;
  width: 650px;
  height: 650px;
  background: rgba(255, 178, 28, 0.07);
}

.register-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
  align-items: start;
}

.register-aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.register-aside h2 {
  color: #fff;
}

.register-aside > p:not(.eyebrow) {
  color: #b8cfe2;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-stack > a,
.contact-stack > div {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 13px 15px;
  color: #e3f1fb;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.contact-stack > a:hover {
  background: rgba(255, 255, 255, 0.11);
}

.contact-stack > * > span:first-child {
  display: grid;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 11px;
  font-weight: 800;
  place-items: center;
}

.contact-stack > * > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-stack small {
  color: #99b6cf;
  font-size: 0.63rem;
}

.contact-stack strong {
  font-size: 0.78rem;
}

.privacy-note {
  display: flex;
  gap: 10px;
  color: #9fb8ce;
  font-size: 0.67rem;
}

.privacy-note span {
  color: #5ce1aa;
  font-size: 1rem;
}

.privacy-note p {
  margin: 0;
}

.lead-form {
  padding: 34px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e2ebf2;
}

.form-heading span {
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--navy-900);
  font-size: 1.1rem;
}

.module-choice {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.module-choice > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-choice label {
  cursor: pointer;
}

.module-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.module-choice span {
  display: block;
  padding: 8px 11px;
  color: #4f687e;
  background: #f4f8fb;
  border: 1px solid #d5e1ea;
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 650;
}

.module-choice input:checked + span {
  color: var(--blue-700);
  background: #e5f4ff;
  border-color: #8fc9ee;
}

.module-choice input:focus-visible + span {
  outline: 3px solid rgba(255, 178, 28, 0.8);
  outline-offset: 2px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 13px;
  color: #51687d;
  cursor: pointer;
  font-size: 0.68rem;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-600);
}

.consent a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
}

.form-error {
  display: block;
  min-height: 20px;
  color: var(--danger);
  font-size: 0.66rem;
}

.form-footnote {
  margin: 10px 0 0;
  color: #7c8d9c;
  font-size: 0.64rem;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bottom CTA and footer */
.final-cta {
  padding: 38px 0;
  color: #fff;
  background: linear-gradient(100deg, var(--blue-700), #058fda);
}

.final-cta__inner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.final-cta__inner > div:first-child {
  display: flex;
  flex-direction: column;
}

.final-cta__inner span {
  color: #d8f0ff;
  font-size: 0.72rem;
}

.final-cta__inner strong {
  margin-top: 3px;
  font-size: 1.35rem;
}

.final-cta__inner > div:last-child {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  color: #9db2c7;
  background: #02152f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.8fr 0.8fr 1fr;
  gap: 60px;
  padding-top: 70px;
  padding-bottom: 55px;
}

.brand--footer .brand__copy > span,
.brand--footer .brand__copy strong {
  color: #fff;
}

.footer-brand > p {
  max-width: 390px;
  margin: 20px 0 15px;
  font-size: 0.73rem;
}

.operated-by {
  color: #7791a9;
  font-size: 0.68rem;
}

.operated-by strong {
  color: #c8daea;
}

.footer-grid h2 {
  margin: 5px 0 20px;
  color: #e7f2fb;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 0.69rem;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--gold-400);
}

.footer-contact li:last-child {
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-legal p {
  max-width: 760px;
  margin: 0;
  color: #708aa2;
  font-size: 0.6rem;
  line-height: 1.65;
}

.footer-legal > div {
  display: flex;
  flex: 0 0 auto;
  gap: 15px;
  color: #7891a8;
  font-size: 0.61rem;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  z-index: 900;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  gap: 9px;
}

.floating-contact a {
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(2, 24, 52, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact a:hover {
  box-shadow: 0 15px 34px rgba(2, 24, 52, 0.32);
  transform: translateY(-2px);
}

.floating-contact__facebook {
  background: #1769d1;
}

.floating-contact__phone {
  background: #169764;
}

.floating-contact span {
  display: grid;
  width: 19px;
  height: 19px;
  font-weight: 800;
  place-items: center;
}

.floating-contact em {
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 750;
}

/* Dialog and toast */
.lead-dialog {
  width: min(calc(100% - 32px), 610px);
  padding: 35px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
}

.lead-dialog::backdrop {
  background: rgba(1, 19, 43, 0.72);
  backdrop-filter: blur(5px);
}

.lead-dialog__close-form {
  position: absolute;
  top: 12px;
  right: 12px;
}

.lead-dialog__close-form button {
  display: grid;
  width: 36px;
  height: 36px;
  color: #51697e;
  background: #f0f5f8;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.4rem;
  place-items: center;
}

.lead-dialog__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green-600);
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 800;
  place-items: center;
}

.lead-dialog h2 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1.45rem;
}

.lead-dialog > p {
  color: var(--muted);
  font-size: 0.75rem;
}

.lead-dialog textarea {
  min-height: 190px;
  resize: vertical;
  line-height: 1.55;
}

.lead-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.toast {
  position: fixed;
  z-index: 10000;
  bottom: 24px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 12px 17px;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.72rem;
  transform: translateX(-50%);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.1s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: var(--soft);
}

.legal-header {
  padding: 26px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-header .container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.legal-main {
  padding: 70px 0 90px;
}

.legal-article {
  max-width: 850px;
  margin: 0 auto;
  padding: 45px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-article h1 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: #70859a;
  font-size: 0.67rem;
}

.breadcrumb a {
  color: var(--blue-700);
  font-weight: 700;
}

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

.legal-article h2 {
  margin: 35px 0 12px;
  color: var(--navy-900);
  font-size: 1.25rem;
}

.legal-article h3 {
  margin: 24px 0 8px;
  color: var(--navy-900);
  font-size: 1rem;
}

.legal-article p,
.legal-article li {
  color: #4f687e;
  font-size: 0.84rem;
}

.legal-article li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-bottom: 30px;
  color: #71869a;
  font-size: 0.7rem;
}

.legal-highlight {
  margin: 25px 0;
  padding: 18px 20px;
  color: #31516e;
  background: #edf8ff;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 12px 12px 0;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-cta {
    margin-right: 10px;
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
    gap: 35px;
  }

  .roadmap {
    grid-template-columns: repeat(4, 1fr);
  }

  .roadmap li:not(:last-child)::after {
    display: none;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 65px;
  }

  .hero__grid,
  .intro-grid,
  .pricing-grid,
  .feature-grid,
  .goal-grid,
  .lookup-grid,
  .schedule-grid,
  .faq-grid,
  .register-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__visual {
    max-width: 720px;
    padding-left: 0;
  }

  .hero__image-frame {
    min-height: 440px;
  }

  .hero__image-frame img {
    height: 440px;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts > div:nth-child(2)::after {
    display: none;
  }

  .hero-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .pricing-grid,
  .feature-grid,
  .goal-grid,
  .lookup-grid,
  .schedule-grid,
  .faq-grid,
  .register-grid {
    gap: 45px;
  }

  .module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .module-card,
  .module-card:nth-child(4) {
    grid-column: auto;
  }

  .module-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .feature-media {
    order: 2;
  }

  .feature-copy {
    order: 1;
  }

  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookup-copy,
  .pricing-copy {
    max-width: 680px;
  }

  .schedule-visual img,
  .feature-media img,
  .goal-visual img {
    min-height: 390px;
  }

  .faq-copy,
  .register-aside {
    position: static;
  }

  .faq-copy {
    max-width: 650px;
  }

  .register-aside {
    max-width: 650px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

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

  .section {
    padding: 68px 0;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .topbar__links {
    min-height: 32px;
  }

  .nav-wrap {
    min-height: var(--header-height);
  }

  .brand__mark {
    flex-basis: 44px;
    width: 44px;
    height: 43px;
  }

  .brand__mark img {
    top: -15px;
    left: -15px;
    width: 74px;
    height: 74px;
  }

  .brand__copy strong {
    font-size: 0.59rem;
  }

  .brand__copy > span {
    font-size: 0.83rem;
  }

  .brand__copy small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .hero__content h1 {
    font-size: clamp(2.3rem, 12.5vw, 3.5rem);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
  }

  .hero__visual {
    padding-bottom: 65px;
  }

  .hero__image-frame {
    min-height: 370px;
    border-width: 5px;
    border-radius: 25px 25px 25px 65px;
  }

  .hero__image-frame img {
    height: 370px;
    object-position: 77% center;
  }

  .floating-card--price {
    top: 18px;
    left: -4px;
    padding: 13px 15px;
  }

  .floating-card--price strong {
    font-size: 1.15rem;
  }

  .floating-card--learning {
    right: 5px;
    bottom: 12px;
  }

  .hero-facts {
    margin-top: 45px;
  }

  .hero-facts > div {
    min-height: 96px;
    padding: 18px;
  }

  .hero-facts strong {
    font-size: 1.05rem;
  }

  .hero-facts span {
    font-size: 0.64rem;
  }

  .section-heading--center {
    margin-bottom: 35px;
    text-align: left;
  }

  .section-heading--center .eyebrow {
    margin-left: 0;
  }

  .answer-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .answer-card {
    padding: 23px;
  }

  .answer-card__top {
    align-items: flex-start;
  }

  .wide-banner {
    border-radius: 18px;
  }

  .wide-banner img {
    min-height: 250px;
    object-fit: cover;
    object-position: 55% center;
  }

  .module-grid,
  .roadmap,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .module-card,
  .module-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .module-card {
    padding: 24px;
  }

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

  .calculator__list label {
    gap: 8px;
    padding: 8px;
  }

  .calculator__list i {
    display: none;
  }

  .calculator__list b,
  .calculator__list > label > strong {
    font-size: 0.68rem;
  }

  .calculator__total {
    padding: 18px;
  }

  .calculator__amount strong {
    font-size: 1.2rem;
  }

  .feature-list,
  .goal-conditions {
    grid-template-columns: 1fr;
  }

  .feature-media img,
  .goal-visual img,
  .schedule-visual img {
    min-height: 330px;
  }

  .feature-media img {
    object-position: 72% center;
  }

  .goal-visual img {
    object-position: 77% center;
  }

  .schedule-visual img {
    object-position: 78% center;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-item summary {
    padding-right: 38px;
    font-size: 0.82rem;
  }

  .faq-item > div {
    padding-right: 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .final-cta__inner,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__inner > div:last-child {
    display: grid;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-legal > div {
    flex-wrap: wrap;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .floating-contact a {
    width: 47px;
    min-width: 47px;
    height: 47px;
    padding: 0;
    justify-content: center;
    border-radius: 15px;
  }

  .floating-contact em {
    display: none;
  }

  .lead-dialog {
    padding: 28px 20px 22px;
  }

  .lead-dialog__actions {
    grid-template-columns: 1fr;
  }

  .legal-header .button {
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .legal-main {
    padding: 45px 0 65px;
  }

  .legal-article {
    padding: 25px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 390px) {
  .brand__copy > span {
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }

  .menu-button {
    width: 43px;
    height: 43px;
  }

  .hero-facts > div {
    padding: 15px 12px;
  }

  .hero-facts strong {
    font-size: 0.93rem;
  }

  .module-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .select-module {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .module-icon {
    box-shadow: 0 11px 22px rgba(7, 87, 184, 0.18);
  }
}
