:root {
  color-scheme: light;
  --ink: #15171c;
  --muted: #68707d;
  --line: #dfe3e8;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --red: #e30613;
  --red-dark: #b8040e;
  --blue: #123c69;
  --blue-soft: #e8f0f8;
  --gold: #f3b233;
  --shadow: 0 18px 50px rgba(14, 25, 38, 0.14);
  --hero-pad-top: clamp(2.4rem, 4.8vw, 4.4rem);
  --hero-pad-bottom: clamp(2.4rem, 4vw, 3.6rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(21, 23, 28, 0.08);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.topbar a:hover,
.nav-menu a:hover,
.wayfinder a:hover {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}

.brand img {
  width: 230px;
  height: 64px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: block;
  padding: 0.65rem 0.85rem 0.98rem;
  color: #303640;
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.nav-menu a[aria-current="page"],
.nav-menu a.is-active {
  color: var(--red);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: min(58px, calc(100% - 1.7rem));
  height: 3px;
  background: var(--red);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after,
.nav-menu a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: center;
  min-height: clamp(620px, 72vh, 760px);
  padding: var(--hero-pad-top) max(1.25rem, calc((100vw - 1180px) / 2)) var(--hero-pad-bottom);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.07), transparent 24vw),
    linear-gradient(112deg, rgba(18, 60, 105, 0.98) 0%, rgba(18, 45, 73, 0.96) 54%, rgba(21, 23, 28, 0.96) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 56px),
    var(--blue);
  color: #fff;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-content,
.hero-facts {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-band .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 1120px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  margin-bottom: 1.35rem;
}

.hero-title span {
  color: var(--red);
}

.hero-title::after {
  content: "";
  display: block;
  width: clamp(94px, 10vw, 160px);
  height: 3px;
  margin-top: clamp(1.1rem, 2vw, 1.55rem);
  background: var(--gold);
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
}

.hero-actions .button {
  min-height: 58px;
  padding: 0.9rem 1.35rem;
}

.hero-button-arrow::after {
  content: "→";
  font-size: 1.28rem;
  line-height: 1;
}

.hero-button-phone::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.78.59 2.62a2 2 0 0 1-.45 2.11L8 9.7a16 16 0 0 0 6.3 6.3l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.72.47 2.62.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.78.59 2.62a2 2 0 0 1-.45 2.11L8 9.7a16 16 0 0 0 6.3 6.3l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.72.47 2.62.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.2rem;
  width: min(980px, 100%);
  margin: -0.4rem 0 0;
  padding: 0;
}

.hero-facts div {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.8rem;
  border-top: 2px solid rgba(255, 255, 255, 0.34);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-facts dd {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.programs,
.trust,
.contact-band {
  padding: clamp(3rem, 7vw, 5.8rem) max(1.25rem, calc((100vw - 1180px) / 2));
}

.quick-links {
  display: block;
  padding: clamp(2.4rem, 5vw, 4rem) max(1.25rem, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.trust h2,
.contact-band h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.trust p,
.contact-band p {
  color: var(--muted);
}

.quick-intro {
  padding-top: 0.25rem;
}

.quick-intro h2 {
  max-width: 720px;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.quick-intro p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.quick-intro > a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--red);
  font-weight: 900;
}

.wayfinder {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 23, 28, 0.16);
  background: #fff;
}

.wayfinder-group {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 300px;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.15rem, 2.4vw, 1.6rem) clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid rgba(21, 23, 28, 0.16);
}

.wayfinder-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.wayfinder-group h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.15;
}

.wayfinder-group p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
}

.wayfinder-group nav {
  display: grid;
  gap: 0.18rem;
  width: 300px;
  max-width: 100%;
  align-self: center;
  justify-content: stretch;
  justify-self: stretch;
  align-content: center;
}

.wayfinder-group a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  padding: 0.34rem 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.12);
  background: transparent;
  color: #303640;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.wayfinder-group a::after {
  content: "→";
  color: var(--red);
}

.wayfinder-group a:hover,
.wayfinder-group a:focus-visible {
  color: var(--red);
  outline: none;
}

.programs {
  background:
    linear-gradient(90deg, rgba(18, 60, 105, 0.06), transparent 42%),
    var(--soft);
}

.programs .section-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.programs .section-heading {
  max-width: 1180px;
}

.program-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(21, 23, 28, 0.18);
  background: rgba(255, 255, 255, 0.34);
}

.program-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.35rem, 2.8vw, 2rem) clamp(1.2rem, 3.8vw, 3.25rem);
  border-bottom: 1px solid rgba(21, 23, 28, 0.18);
}

.program-item h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.program-item p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.program-item strong {
  justify-self: end;
  color: var(--blue);
  font-size: 0.92rem;
  white-space: nowrap;
}

.program-item strong::after {
  content: " →";
  color: var(--red);
}

.program-item:hover h3,
.program-item:hover strong {
  color: var(--red);
}

.trust {
  display: block;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.trust > div:first-child {
  max-width: 860px;
}

.trust .eyebrow {
  color: var(--red);
}

.trust-list {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  border-top: 0;
}

.trust-list div {
  min-height: 118px;
  padding: clamp(1.15rem, 2vw, 1.55rem) clamp(1.15rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(21, 23, 28, 0.12);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 36, 58, 0.08);
}

.trust-list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #15171c;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.15;
}

.trust-list p {
  margin: 0;
  max-width: 720px;
  font-weight: 750;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--blue);
  color: #fff;
}

.contact-band p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: #15171c;
  color: #fff;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.footer a:hover {
  color: #fff;
}

.license-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: clamp(620px, 72vh, 760px);
  padding: var(--hero-pad-top) max(1.25rem, calc((100vw - 1180px) / 2)) var(--hero-pad-bottom);
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.07), transparent 24vw),
    linear-gradient(112deg, rgba(18, 60, 105, 0.98) 0%, rgba(18, 45, 73, 0.96) 54%, rgba(21, 23, 28, 0.96) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 56px),
    var(--blue);
  color: #fff;
  overflow: hidden;
}

.license-hero::before {
  content: none;
}

.license-hero::after {
  content: none;
}

.license-hero-copy,
.license-hero-classes {
  position: relative;
  z-index: 1;
}

.license-hero h1 {
  max-width: 1120px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 1.04;
}

.license-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.license-hero-classes {
  display: grid;
  justify-self: end;
  align-self: center;
  width: min(520px, 100%);
  gap: 0.72rem;
  padding: clamp(1.25rem, 2vw, 1.7rem) clamp(1.25rem, 2vw, 1.7rem) clamp(1.2rem, 2vw, 1.6rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid var(--red);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.license-hero-classes p {
  margin: 0 0 0.2rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.license-hero-classes div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.license-hero-classes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.32rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.92rem, 1.18vw, 1.12rem);
  font-weight: 900;
  line-height: 1;
}

.license-hero-classes small {
  display: block;
  max-width: 360px;
  margin-top: 0.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

.license-guide,
.license-cta {
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2));
}

.license-guide {
  display: block;
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.license-guide h2 {
  max-width: 620px;
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  line-height: 1.08;
}

.license-guide-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.license-paths {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 23, 28, 0.13);
  border-bottom: 1px solid rgba(21, 23, 28, 0.13);
  background: #fff;
}

.license-path {
  position: relative;
  display: grid;
  grid-template-columns: clamp(220px, 18vw, 250px) minmax(0, 1fr) max-content;
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: center;
  min-width: 0;
  min-height: auto;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.25rem) clamp(1.15rem, 2vw, 1.5rem);
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(21, 23, 28, 0.1);
  background: #fff;
  color: #303640;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.license-path:last-child {
  border-bottom: 0;
}

.license-path span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.license-path strong {
  display: block;
  color: #15171c;
  font-weight: 900;
  line-height: 1.3;
  min-width: 0;
  transition: color 0.2s ease;
}

.license-path strong {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.license-path em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.license-path:hover,
.license-path:focus-visible {
  background: #f6f8fb;
  border-left-color: var(--red);
  outline: none;
}

.license-path:hover strong,
.license-path:focus-visible strong {
  color: var(--red);
}

.license-path:hover em,
.license-path:focus-visible em {
  color: #303640;
}

.license-catalog {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1.4rem, 3.4vw, 2.8rem) max(1.25rem, calc((100vw - 1180px) / 2)) clamp(3rem, 6vw, 5rem);
  background: #f6f8fb;
}

.license-category {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  scroll-margin-top: 180px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(21, 23, 28, 0.08);
}

.license-category figure {
  display: none;
}

.license-category img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.license-category-content {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.license-category-content h2 {
  max-width: 760px;
  margin-bottom: 0.65rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.license-category-content p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.03rem;
}

.license-class-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem clamp(1.4rem, 3vw, 2.6rem);
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 23, 28, 0.12);
}

.license-class-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(54px, max-content) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  min-width: 0;
  padding: 0.42rem 0.55rem 0.42rem 0.75rem;
  border-left: 3px solid transparent;
  color: #303640;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.license-class-list a:hover,
.license-class-list a:focus-visible {
  background: #f6f8fb;
  border-left-color: var(--red);
  color: #15171c;
  outline: none;
}

.license-class-list strong {
  color: #15171c;
  font-weight: 950;
  transition: color 0.2s ease;
}

.license-class-list span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.license-class-list a:hover strong,
.license-class-list a:focus-visible strong {
  color: var(--red);
}

.license-class-list a:hover span,
.license-class-list a:focus-visible span {
  color: #303640;
}

.license-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
  background: var(--blue);
  color: #fff;
}

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

.license-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 1.08;
}

.standard-section {
  padding: clamp(3rem, 6vw, 5rem) max(1.25rem, calc((100vw - 1180px) / 2));
  background: #fff;
}

.standard-section.alt {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.standard-section .section-heading {
  max-width: 900px;
  margin-bottom: clamp(1.6rem, 3.2vw, 2.6rem);
}

.standard-section .section-heading h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.standard-rows {
  display: grid;
  max-width: 1080px;
  border-top: 1px solid rgba(21, 23, 28, 0.14);
  background: #fff;
}

.standard-row {
  display: grid;
  grid-template-columns: clamp(190px, 22vw, 260px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: start;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.14);
}

.standard-row > span,
.standard-card > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.standard-row h3,
.standard-card h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.standard-row p,
.standard-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1100px;
  background: rgba(21, 23, 28, 0.12);
}

.standard-card {
  min-height: 210px;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  background: #fff;
}

.standard-links {
  display: grid;
  max-width: 760px;
  border-top: 1px solid rgba(21, 23, 28, 0.12);
}

.standard-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 1rem;
  align-items: center;
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.12);
  color: #303640;
  font-weight: 850;
  line-height: 1.2;
}

.standard-links a::after {
  content: "→";
  color: var(--red);
}

.standard-links a:hover,
.standard-links a:focus-visible {
  color: var(--red);
  outline: none;
}

.standard-note {
  max-width: 760px;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-left: 5px solid var(--red);
  background: #f6f8fb;
}

.standard-note p:last-child {
  margin-bottom: 0;
}

.resource-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 4vw, 3rem);
  max-width: 900px;
  padding: clamp(1.35rem, 2.8vw, 2rem);
  border: 1px solid rgba(21, 23, 28, 0.14);
  border-left: 6px solid var(--red);
  background: #fff;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
}

.resource-cards .resource-panel {
  align-items: flex-start;
  flex-direction: column;
  max-width: none;
  height: 100%;
}

.resource-cards .resource-link {
  margin-top: auto;
}

.resource-panel span,
.resource-list span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-panel h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.1;
}

.resource-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.resource-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue);
  font-weight: 900;
}

.resource-link::after {
  content: "→";
  color: var(--red);
}

.resource-list {
  display: grid;
  max-width: 900px;
  border-top: 1px solid rgba(21, 23, 28, 0.14);
}

.resource-list a {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.14);
  transition: color 0.2s ease;
}

.resource-list a::after {
  content: "→";
  color: var(--red);
  font-weight: 900;
}

.resource-list a:hover,
.resource-list a:focus-visible {
  color: var(--red);
  outline: none;
}

.signup-qr-section {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.signup-qr {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 520px);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  max-width: 1040px;
}

.signup-qr-image {
  display: block;
  padding: clamp(0.75rem, 1.8vw, 1.1rem);
  border: 1px solid rgba(21, 23, 28, 0.12);
  border-left: 6px solid var(--red);
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 36, 58, 0.1);
}

.signup-qr-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.signup-qr-copy h3 {
  max-width: 520px;
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.signup-qr-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-weight: 750;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
  max-width: 1180px;
}

.signup-form {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: none;
}

.signup-form fieldset {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: clamp(1.35rem, 2.7vw, 2rem) 0;
  border: 0;
  border-top: 1px solid rgba(21, 23, 28, 0.14);
}

.signup-form legend {
  margin-bottom: 0.25rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-note {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.55;
}

.signup-form label {
  display: grid;
  gap: 0.45rem;
  color: #15171c;
  font-weight: 900;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 28, 0.18);
  background: #fff;
  color: #15171c;
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 0.95rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 15, 27, 0.12);
}

.select-field {
  max-width: 540px;
}

.select-shell {
  position: relative;
  display: block;
}

.select-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.select-shell select {
  min-height: 3.35rem;
  padding-right: 2.8rem;
  appearance: none;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  box-shadow: 0 12px 28px rgba(21, 23, 28, 0.06);
  cursor: pointer;
}

.select-shell select:hover {
  border-color: rgba(237, 15, 27, 0.34);
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.upload-grid label,
.upload-field {
  padding: 1rem;
  border: 1px solid rgba(21, 23, 28, 0.14);
  background: #fff;
}

.upload-field {
  position: relative;
  cursor: pointer;
}

.upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-drop {
  margin-top: 0.75rem;
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  border: 1px solid rgba(21, 23, 28, 0.14);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f4f8 100%);
  color: var(--muted);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.upload-action {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.upload-filename {
  min-width: 0;
  color: var(--muted);
  font-weight: 800;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-remove {
  display: none;
  flex: 0 0 auto;
  min-height: 2.2rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(237, 15, 27, 0.24);
  background: #fff;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.upload-remove:hover,
.upload-remove:focus-visible {
  border-color: rgba(237, 15, 27, 0.5);
  background: rgba(237, 15, 27, 0.06);
  outline: none;
}

.upload-field:hover .upload-drop,
.upload-field:focus-within .upload-drop {
  border-color: rgba(237, 15, 27, 0.38);
  background: #fff;
  box-shadow: 0 14px 28px rgba(21, 23, 28, 0.06);
}

.upload-field.has-file .upload-drop {
  border-color: rgba(20, 68, 111, 0.28);
  background: #fff;
}

.upload-field.has-file .upload-filename {
  color: var(--ink);
}

.upload-field.has-file .upload-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.class-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.choice-title {
  margin: 1rem 0 -0.15rem;
  color: var(--ink);
  font-weight: 900;
}

.class-choice label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(21, 23, 28, 0.14);
  background: #f6f8fb;
  font-weight: 900;
}

.class-choice input,
.privacy-check input {
  width: auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  accent-color: var(--red);
}

.license-choice {
  gap: 0.6rem;
}

.license-choice label {
  position: relative;
  min-height: 3.15rem;
  padding: 0.72rem 1rem 0.72rem 0.82rem;
  border-color: rgba(21, 23, 28, 0.14);
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 23, 28, 0.04);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.license-choice label:hover {
  border-color: rgba(237, 15, 27, 0.35);
  box-shadow: 0 12px 28px rgba(21, 23, 28, 0.08);
  transform: translateY(-1px);
}

.license-choice label:has(input:checked) {
  border-color: rgba(237, 15, 27, 0.58);
  background: #fff5f6;
  color: var(--red);
  box-shadow: inset 3px 0 0 var(--red), 0 12px 28px rgba(237, 15, 27, 0.08);
}

.license-choice label.is-disabled {
  color: rgba(21, 23, 28, 0.44);
  cursor: not-allowed;
  opacity: 0.55;
}

.license-choice label.is-disabled:hover {
  border-color: rgba(21, 23, 28, 0.14);
  box-shadow: 0 8px 20px rgba(21, 23, 28, 0.04);
  transform: none;
}

.license-choice input {
  display: grid;
  place-content: center;
  width: 1rem;
  height: 1rem;
  margin: 0;
  border: 2px solid rgba(21, 23, 28, 0.28);
  background: #fff;
  appearance: none;
}

.license-choice input::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  background: var(--red);
  transform: scale(0);
  transition: transform 0.14s ease;
}

.license-choice input:checked {
  border-color: var(--red);
}

.license-choice input:checked::before {
  transform: scale(1);
}

.license-choice input:disabled {
  border-color: rgba(21, 23, 28, 0.18);
  background: #f1f3f6;
}

.document-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.document-choice label {
  min-height: 3.35rem;
  background: #f8fafc;
}

.wide-label {
  max-width: 820px;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  max-width: 860px;
  color: var(--muted) !important;
  font-weight: 800 !important;
}

.privacy-check a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.signup-mail-note {
  max-width: 720px;
}

.signup-next-steps {
  position: sticky;
  top: 122px;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  border-top: 1px solid rgba(21, 23, 28, 0.14);
  border-left: 6px solid var(--red);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  box-shadow: 0 18px 42px rgba(18, 36, 58, 0.08);
}

.signup-next-steps h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.signup-next-steps ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: signup-step;
}

.signup-next-steps li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(21, 23, 28, 0.12);
  counter-increment: signup-step;
}

.signup-next-steps li::before {
  content: counter(signup-step);
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
}

.signup-next-steps strong,
.signup-next-steps span {
  display: block;
  grid-column: 2;
}

.signup-next-steps strong {
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.signup-next-steps span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.4;
}

.senior-hero-panel {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(500px, 100%);
  padding: clamp(1.35rem, 2.3vw, 2rem);
  border-left: 6px solid var(--red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.senior-hero-panel > p {
  margin: 0 0 1.15rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.senior-hero-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.senior-hero-panel div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.senior-hero-panel dt,
.senior-hero-panel dd {
  margin: 0;
}

.senior-hero-panel dt {
  color: #fff;
  font-weight: 900;
}

.senior-hero-panel dd {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.education-hero-panel {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(540px, 100%);
  padding: clamp(1.35rem, 2.3vw, 2rem);
  border-left: 6px solid var(--red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.education-hero-panel > p {
  margin: 0 0 1.15rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.education-hero-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.education-hero-panel div {
  display: grid;
  grid-template-columns: minmax(150px, max-content) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.education-hero-panel dt,
.education-hero-panel dd {
  margin: 0;
}

.education-hero-panel dt {
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}

.education-hero-panel dd {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.4;
}

.service-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.62fr);
}

.service-hero-title {
  max-width: 900px;
  font-size: clamp(2.65rem, 5vw, 4.75rem);
}

.service-hero .education-hero-panel {
  width: min(620px, 100%);
}

.service-hero .education-hero-panel div {
  grid-template-columns: minmax(118px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.service-hero .education-hero-panel dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

.education-overview,
.education-flow {
  padding: clamp(3rem, 7vw, 5.8rem) max(1.25rem, calc((100vw - 1180px) / 2));
}

.education-overview {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.education-routes {
  display: grid;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 23, 28, 0.16);
  background: #fff;
}

.education-route {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) 360px;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.35rem, 2.8vw, 2rem) clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid rgba(21, 23, 28, 0.14);
}

.education-route-copy {
  max-width: 680px;
}

.education-route-copy span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.education-route-copy h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.education-route-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.education-route nav {
  display: grid;
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.education-route nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.85rem;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.12);
  color: #303640;
  font-weight: 850;
  line-height: 1.15;
  transition: color 0.2s ease;
}

.education-route nav a::after {
  content: "→";
  color: var(--red);
}

.education-route nav a:hover,
.education-route nav a:focus-visible {
  color: var(--red);
  outline: none;
}

.education-flow {
  background: #fff;
}

.education-steps {
  display: grid;
  max-width: 1080px;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 23, 28, 0.16);
}

.education-steps div {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.3rem) 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.12);
}

.education-steps strong {
  color: #15171c;
  font-size: 1.06rem;
  font-weight: 900;
}

.education-steps span {
  color: var(--muted);
  font-weight: 700;
}

.location-hero-panel {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(500px, 100%);
  padding: clamp(1.35rem, 2.3vw, 2rem);
  border-left: 6px solid var(--red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.location-hero-panel > p {
  margin: 0 0 1.15rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-hero-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.location-hero-panel div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.location-hero-panel dt,
.location-hero-panel dd {
  margin: 0;
}

.location-hero-panel dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.location-hero-panel dd {
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}

.location-main {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.location-overview,
.location-nearby,
.location-note-section {
  padding: clamp(3rem, 7vw, 5.8rem) max(1.25rem, calc((100vw - 1180px) / 2));
}

.location-overview {
  display: block;
  padding-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.location-nearby {
  padding-top: clamp(1.5rem, 3vw, 2.6rem);
}

.location-overview > div {
  max-width: 760px;
}

.location-overview h2,
.location-nearby h2,
.location-note-section h2 {
  max-width: 760px;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.06;
}

.location-overview p:not(.eyebrow),
.location-nearby p:not(.eyebrow),
.location-note-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.location-details {
  display: grid;
  max-width: 980px;
  margin-top: clamp(1.6rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(21, 23, 28, 0.16);
}

.location-detail {
  display: grid;
  grid-template-columns: minmax(160px, 0.25fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.12);
}

.location-detail dt,
.location-detail dd {
  margin: 0;
}

.location-detail dt {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-detail dd {
  color: #303640;
  font-weight: 750;
}

.location-detail strong {
  color: var(--ink);
  font-weight: 900;
}

.location-links {
  display: grid;
  max-width: 620px;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(21, 23, 28, 0.14);
}

.location-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.12);
  color: #303640;
  font-weight: 850;
}

.location-links a::after {
  content: "→";
  color: var(--red);
}

.location-links a:hover,
.location-links a:focus-visible {
  color: var(--red);
  outline: none;
}

.location-note-section {
  background: #fff;
}

.location-note-box {
  max-width: 860px;
  padding-left: 1.25rem;
  border-left: 5px solid var(--red);
}

.senior-intro,
.senior-flow,
.training-situations {
  padding: clamp(3rem, 7vw, 5.8rem) max(1.25rem, calc((100vw - 1180px) / 2));
}

.senior-intro {
  display: block;
}

.senior-intro h2,
.training-situations h2 {
  max-width: 1080px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.06;
}

.senior-copy {
  display: grid;
  gap: 1rem;
  max-width: 1060px;
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
}

.senior-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.senior-flow {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.senior-flow .section-heading {
  max-width: 1080px;
}

.senior-flow .section-heading h2 {
  max-width: 1080px;
}

.senior-flow .section-heading p {
  max-width: 820px;
}

.senior-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 23, 28, 0.14);
  border-bottom: 1px solid rgba(21, 23, 28, 0.14);
  background: #fff;
}

.senior-steps section {
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(21, 23, 28, 0.12);
}

.senior-steps section:last-child {
  border-right: 0;
}

.senior-steps span,
.situation-list strong {
  display: block;
}

.senior-steps span {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.senior-steps h3 {
  max-width: 310px;
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.senior-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.training-situations {
  display: block;
}

.situation-list {
  display: grid;
  max-width: 1080px;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 23, 28, 0.14);
  background: #fff;
}

.situation-list div {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.3rem) clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid rgba(21, 23, 28, 0.14);
}

.situation-list strong {
  color: #15171c;
  font-size: 1.05rem;
}

.situation-list span {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 900px) {
  .topbar {
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% - 0.5rem);
    display: none;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-menu a {
    padding: 0.85rem 0.85rem 1rem;
  }

  .hero,
  .trust,
  .footer {
    grid-template-columns: 1fr;
  }

  .license-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .license-hero-classes {
    justify-self: start;
    justify-content: flex-start;
  }

  .senior-hero-panel {
    justify-self: start;
  }

  .education-hero-panel {
    justify-self: start;
  }

  .location-hero-panel {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-facts {
    gap: 0.8rem 1.4rem;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .quick-intro {
    position: static;
  }

  .wayfinder-group {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .wayfinder-group nav {
    width: 100%;
    justify-content: flex-start;
  }

  .program-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .program-item strong {
    justify-self: start;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .resource-list a {
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1rem;
  }

  .resource-list a strong {
    grid-column: 1 / -1;
  }

  .signup-qr {
    grid-template-columns: 1fr;
  }

  .signup-qr-image {
    width: min(430px, 100%);
  }

  .signup-layout {
    grid-template-columns: 1fr;
  }

  .signup-next-steps {
    position: static;
  }

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

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

  .document-choice {
    grid-template-columns: 1fr;
  }

  .signup-form fieldset {
    padding: 1.25rem 0;
  }

  .class-choice {
    gap: 0.5rem;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .license-guide,
  .license-category,
  .location-overview,
  .education-route {
    grid-template-columns: 1fr;
  }

  .education-route nav {
    justify-self: stretch;
    max-width: none;
  }

  .license-paths {
    grid-template-columns: 1fr;
  }

  .license-path {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .license-path em {
    text-align: left;
    white-space: normal;
  }

  .license-class-list {
    grid-template-columns: 1fr;
  }

  .license-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .senior-intro,
  .senior-steps,
  .training-situations,
  .standard-row,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .standard-row {
    gap: 0.75rem;
  }

  .senior-steps section {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 23, 28, 0.12);
  }

  .senior-steps section:last-child {
    border-bottom: 0;
  }

  .situation-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 620px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }

  .brand img {
    width: 172px;
    height: 48px;
  }

  .hero-actions,
  .contact-actions,
  .form-actions,
  .button {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .license-path {
    padding: 1rem;
  }

  .license-class-list a {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .location-hero-panel div,
  .location-detail {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
