:root {
  --blue: #1d5fd6;
  --blue-dark: #123a9a;
  --blue-soft: #e8f0ff;
  --red: #ef3737;
  --red-dark: #c7252b;
  --navy: #071833;
  --ink: #101828;
  --muted: #5b667a;
  --silver: #f4f6f9;
  --silver-strong: #e6ebf2;
  --white: #ffffff;
  --line: #d8deea;
  --shadow: 0 18px 48px rgba(10, 24, 54, 0.12);
  --radius: 8px;
  --radius-large: 16px;
  --max: 1180px;
  --offer-bar-height: 64px;
  --mobile-offer-bar-height: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.has-mobile-nav,
body.has-consent {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

html.offer-expired [data-offer-active] {
  display: none !important;
}

html.offer-active [data-offer-expired] {
  display: none !important;
}

html.offer-expired .site-header {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--tint {
  background: var(--silver);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--image {
  background: linear-gradient(180deg, var(--white), var(--blue-soft));
}

.announcement {
  position: sticky;
  top: 0;
  z-index: 140;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: var(--white);
  max-width: 100%;
  overflow: hidden;
}

.announcement__inner {
  width: min(100% - 32px, var(--max));
  max-width: 100%;
  min-height: var(--offer-bar-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0;
}

.announcement p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: clamp(0.72rem, 3.4vw, 0.86rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement__desktop,
.announcement__mobile-short {
  display: none;
}

.announcement__mobile {
  display: inline;
}

.announcement .button {
  display: inline-flex;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

@media (max-width: 359px) {
  .announcement p {
    font-size: 0.68rem;
  }

  .announcement__mobile {
    display: inline;
  }

  .announcement__mobile-short {
    display: none;
  }

}

@media (min-width: 560px) {
  :root {
    --offer-bar-height: 52px;
  }

  .announcement__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    justify-items: stretch;
  }

  .announcement p {
    text-align: left;
  }
}

.site-header {
  position: sticky;
  top: var(--offer-bar-height);
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  max-width: 100%;
}

.site-header.is-sticky {
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.header-grid {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.65rem;
  max-width: calc(100% - 60px);
  text-decoration: none;
  min-width: 0;
}

.brand span {
  min-width: 0;
  max-width: 100%;
}

.brand img {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--blue);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: clamp(0.98rem, 4vw, 1.08rem);
  line-height: 1.15;
  overflow-wrap: normal;
}

.brand small {
  display: none;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-toggle {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(29, 95, 214, 0.35);
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-nav,
.header-actions {
  display: none;
  max-width: 100%;
  min-width: 0;
}

.site-nav.is-open {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.site-nav a {
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--blue-soft);
}

.site-nav .mobile-drawer-cta {
  width: 100%;
  margin-top: 0.55rem;
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
}

.button--small {
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(239, 55, 55, 0.2);
}

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

.button--blue {
  min-height: 52px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(29, 95, 214, 0.18);
  white-space: nowrap;
}

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

.button--whatsapp {
  min-height: 52px;
  background: #16835f;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(22, 131, 95, 0.2);
  white-space: nowrap;
}

.button--whatsapp:hover {
  background: #0f6f4f;
}

.button--light {
  background: var(--white);
  color: var(--blue-dark);
}

.button--light:hover {
  background: var(--blue-soft);
}

.button--outline {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue-dark);
}

.button--outline:hover {
  background: var(--blue-soft);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.disabled-link {
  opacity: 0.72;
  cursor: not-allowed;
}

.hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 3.6rem 0 4.7rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy,
.hero-media {
  min-width: 0;
  max-width: 100%;
}

.hero-copy {
  max-width: 760px;
}

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

.section--navy .eyebrow,
.hero .eyebrow,
.final-cta .eyebrow {
  color: #ffb9b9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 2.05rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
}

.hero-bridge {
  margin-top: 1.1rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-subhead {
  margin-top: 0.8rem;
  max-width: 700px;
}

.outcome-list,
.check-list {
  padding: 0;
  margin: 1.4rem 0;
  list-style: none;
}

.outcome-list {
  display: grid;
  gap: 0.7rem;
}

.outcome-list li,
.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.outcome-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--red);
}

.check-list--light li::before {
  background: #ffb9b9;
}

.brand-statement {
  margin: 1.6rem 0;
  padding: 1.1rem;
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.brand-statement h2 {
  font-size: 1.35rem;
}

.fact-grid {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.fact-grid span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-actions--center {
  justify-items: center;
}

.cohort-callout {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 1rem;
}

.cohort-callout p {
  margin: 0.25rem 0;
}

.orientation-offer-section {
  background: linear-gradient(180deg, #f8fbff, var(--white));
  padding: 2.4rem 0;
}

.orientation-offer-card {
  display: grid;
  gap: 1rem;
  border: 1px solid #bfd2f2;
  border-left: 6px solid var(--red);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 18px 48px rgba(10, 24, 54, 0.1);
}

.orientation-offer-card h2 {
  max-width: 840px;
  color: var(--navy);
  font-size: clamp(1.55rem, 5.4vw, 2.6rem);
}

.orientation-offer-card p {
  max-width: 900px;
  margin: 0;
  color: #334155;
}

.orientation-offer-card .button {
  width: 100%;
}

.orientation-offer-note {
  color: var(--blue-dark) !important;
  font-weight: 900;
}

.hero-media {
  display: grid;
  min-width: 0;
  gap: 1rem;
  align-content: start;
}

.hero-media > * {
  min-width: 0;
  max-width: 100%;
}

.hero-media img,
.section-photo,
.image-card img,
.photo-strip img {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.start-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.start-card h2,
.start-card p {
  color: var(--ink);
}

.date-options {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.date-options a {
  display: grid;
  gap: 0.15rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 0.9rem;
  text-decoration: none;
}

.date-options a:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.date-options span {
  color: var(--muted);
  font-size: 0.92rem;
}

.start-offer-button {
  width: 100%;
}

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

.section-heading h2 + p,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.86);
}

.support-headline {
  margin: 1rem 0;
  color: var(--blue-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.section--navy .support-headline {
  color: #ffffff;
}

.career-services-section {
  background: linear-gradient(180deg, var(--white), var(--silver));
  color: var(--ink);
}

.career-services-section .container,
.enrollment-section .container {
  width: min(100% - 40px, 1150px);
  max-width: 1150px;
}

.career-services-heading {
  max-width: 860px;
}

.career-services-heading h3 {
  margin-top: 0.8rem;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.25;
}

.support-access {
  display: inline-flex;
  margin: 1rem 0 0.35rem;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0.7rem 0.9rem;
}

.career-service-grid {
  display: grid;
  gap: 1rem;
}

.career-service-card {
  display: grid;
  min-height: 100%;
  align-content: start;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1.25rem;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}

.career-service-card:hover,
.career-service-card:focus-visible {
  border-color: rgba(29, 95, 214, 0.45);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.1);
}

.career-service-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.28;
}

.career-service-card p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.55;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.career-process {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.career-process article {
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1.1rem;
}

.career-process strong,
.career-process span {
  display: block;
}

.career-process strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.career-process span {
  margin-top: 0.35rem;
  color: #334155;
}

.info-box {
  margin-top: 1.5rem;
  border: 1px solid #b8d3ff;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-large);
  background: #eef6ff;
  padding: 1.2rem;
}

.info-box h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.info-box p {
  margin-bottom: 0;
  color: #243349;
  font-size: 1rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

.mini-card,
.feature-card,
.video-card,
.hubspot-card,
.lead-form,
.image-card,
.role-grid article,
.card-grid--light article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.mini-card,
.role-grid article,
.card-grid--light article,
.compact-list span,
.logo-grid span {
  font-weight: 800;
}

.feature-card + .feature-card {
  margin-top: 1rem;
}

.feature-card p:last-child,
.video-card p:last-child {
  margin-bottom: 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.notice,
.disclaimer {
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff7f7;
  padding: 1rem;
  color: #3a1d1d;
}

.section--navy .disclaimer {
  border-color: #ffb9b9;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.section-cta--left {
  justify-content: flex-start;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

summary::after {
  content: "+";
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

details[open] summary::after {
  content: "-";
}

details ul,
details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

details ul {
  columns: 1;
}

details li {
  margin: 0.3rem 0;
}

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

.logo-grid span {
  display: grid;
  min-height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  text-align: center;
}

.split-grid,
.enrollment-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.split-grid > *,
.enrollment-grid > * {
  min-width: 0;
  max-width: 100%;
}

.section-photo {
  aspect-ratio: 4 / 3;
}

.compact-list {
  margin-top: 1.25rem;
}

.compact-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.9rem;
}

.image-card {
  margin: 0;
}

.image-card figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.role-grid article {
  color: var(--navy);
}

.payment-card {
  display: grid;
  align-content: center;
}

.tuition-section {
  background: linear-gradient(180deg, var(--silver), #f9fbff);
}

.tuition-section h2 {
  max-width: 680px;
}

.tuition-card {
  gap: 1rem;
  border-radius: var(--radius-large);
  border-color: #c9d7f0;
  padding: 1.35rem;
}

.tuition-card > * {
  min-width: 0;
  max-width: 100%;
}

.tuition-label {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tuition-card h3 {
  color: var(--navy);
  font-size: clamp(2.6rem, 11vw, 4.6rem);
  line-height: 1;
}

.tuition-card p {
  margin: 0;
  color: #334155;
}

.tuition-card .button {
  width: 100%;
}

.tuition-price-grid {
  display: grid;
  gap: 0.9rem;
}

.tuition-standard {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: clamp(1.4rem, 7vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.tuition-save {
  border-color: #ffd0d0;
  background: #fff4f4;
}

.tuition-clarification {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.tuition-card--expired {
  border-color: var(--line);
}

.payment-breakdown,
.qualification-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #f8fbff;
  padding: 1rem;
}

.payment-breakdown h3,
.qualification-panel h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.payment-breakdown p,
.qualification-panel p {
  margin-bottom: 0;
}

.payment-breakdown dl {
  display: grid;
  gap: 0.75rem;
  margin: 0.85rem 0 0;
}

.payment-breakdown dl > div {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.payment-breakdown dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-breakdown dt {
  color: #334155;
  font-weight: 800;
}

.payment-breakdown dd {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 900;
}

.qualification-panel ol {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0;
  padding-left: 1.25rem;
  color: #334155;
}

.qualification-panel li::marker {
  color: var(--blue-dark);
  font-weight: 900;
}

.payment-question {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  color: var(--navy) !important;
  font-weight: 800;
}

.offer-reminder {
  background: linear-gradient(90deg, var(--navy), var(--blue-dark));
  color: var(--white);
  padding: 1.4rem 0;
}

.offer-reminder__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.offer-reminder .eyebrow,
.offer-reminder h2 {
  color: var(--white);
}

.offer-reminder .eyebrow {
  margin-bottom: 0.35rem;
}

.offer-reminder h2 {
  max-width: 760px;
  font-size: clamp(1.35rem, 5vw, 2.05rem);
  line-height: 1.15;
}

.offer-reminder .button {
  width: 100%;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-summary {
  color: var(--muted);
}

.testimonials-section {
  background: linear-gradient(180deg, #f7f9fd, var(--white));
}

.testimonial-layout {
  display: grid;
  gap: 1rem;
}

.testimonial-heading {
  max-width: 940px;
}

.testimonial-heading h2 {
  max-width: 860px;
}

.testimonial-layout--outcomes {
  gap: 1.1rem;
}

.outcome-story {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  border-radius: var(--radius-large);
  padding: 1.25rem;
}

.outcome-story h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.outcome-story p {
  margin: 0;
}

.story-kicker {
  width: max-content;
  max-width: 100%;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0.42rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-role {
  color: var(--blue-dark);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.salary-badge {
  border: 1px solid #ffd0d0;
  border-radius: 999px;
  background: #fff4f4;
  color: #65151a;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

.story-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  padding: 0.72rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.story-link:hover,
.story-link:focus-visible {
  background: var(--blue-dark);
}

.testimonial-next-step {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1.3rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.testimonial-next-step h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

.testimonial-next-step p {
  margin-bottom: 0;
  color: #334155;
}

.testimonial-disclaimer {
  margin: 1rem 0 0;
  border-left: 5px solid var(--red);
  border-radius: var(--radius-large);
  background: #fff7f7;
  padding: 1rem;
  color: #3a1d1d;
  font-size: 0.98rem;
}

.testimonial-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.testimonial-actions .button {
  min-width: min(100%, 230px);
}

.refund-policy-section {
  background: var(--white);
}

.refund-policy-section .section-heading a {
  color: var(--blue-dark);
  font-weight: 800;
}

.refund-policy-grid {
  display: grid;
  gap: 1rem;
}

.refund-policy-card {
  border-radius: var(--radius-large);
}

.refund-policy-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.refund-policy-card p {
  color: #334155;
}

.refund-policy-card p:last-child {
  margin-bottom: 0;
}

.refund-policy-card strong {
  color: var(--navy);
}

.photo-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.location-grid address {
  font-style: normal;
  color: var(--muted);
}

.location-grid a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.lead-form,
.hubspot-card {
  background: var(--white);
  color: var(--ink);
}

.lead-form h3,
.hubspot-card h3 {
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 1rem 0;
  font-weight: 700;
}

.checkbox-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.form-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.form-status {
  min-height: 1.6rem;
  margin-bottom: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--red-dark);
}

.hubspot-form {
  min-height: 300px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.form-loading {
  color: var(--muted);
}

.enrollment-section {
  background: linear-gradient(180deg, var(--silver), var(--white));
  color: var(--ink);
}

.enrollment-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.admissions-copy h2 {
  color: var(--navy);
  font-size: 2rem;
}

.admissions-copy p {
  color: #334155;
}

.admissions-benefits {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.admissions-benefits li {
  position: relative;
  min-height: 32px;
  padding-left: 2.15rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.admissions-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--blue);
}

.admissions-benefits li::after {
  content: "";
  position: absolute;
  left: 0.44rem;
  top: 0.42rem;
  width: 0.52rem;
  height: 0.28rem;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.cohort-panel {
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1.1rem;
}

.cohort-panel h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.cohort-panel p {
  margin: 0.45rem 0 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.offer-summary-card {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0;
  border: 1px solid #b8d3ff;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.offer-summary-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.offer-summary-card dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.offer-summary-card dl > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.85rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}

.offer-summary-card dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.offer-summary-card dt {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
}

.offer-summary-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}

.admissions-offer-cta {
  width: 100%;
  margin-top: 1rem;
}

.enrollment-form-card {
  width: min(100%, 620px);
  justify-self: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.08);
}

.enrollment-form-card h3 {
  color: var(--navy);
  font-size: 1.4rem;
}

.enrollment-form-card > p {
  color: #334155;
}

.hubspot-enrollment-slot {
  width: 100%;
  min-width: 0;
  margin-top: 1.4rem;
  overflow: hidden;
}

.hs-form-frame,
.hubspot-enrollment-slot iframe,
.hubspot-card iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0;
}

.enrollment-form-card form,
.enrollment-form-card .hs-form {
  width: 100% !important;
  max-width: 100% !important;
}

.enrollment-form-card .hs-form-field {
  width: 100% !important;
  margin-bottom: 1rem !important;
}

.enrollment-form-card .form-columns-1,
.enrollment-form-card .form-columns-2,
.enrollment-form-card .form-columns-3 {
  width: 100% !important;
  max-width: 100% !important;
}

.enrollment-form-card .hs-input,
.enrollment-form-card input,
.enrollment-form-card select,
.enrollment-form-card textarea {
  width: 100% !important;
  min-height: 48px;
  max-width: 100% !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  color: var(--ink) !important;
  font-size: 1rem !important;
}

.enrollment-form-card label,
.enrollment-form-card .hs-form-field label {
  color: var(--navy) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.enrollment-form-card .hs-error-msgs,
.enrollment-form-card .hs-error-msg {
  color: var(--red-dark) !important;
  font-size: 0.95rem !important;
}

.enrollment-form-card .hs-button,
.enrollment-form-card input[type="submit"] {
  width: 100% !important;
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer;
}

.enrollment-form-card .hs-button:hover,
.enrollment-form-card input[type="submit"]:hover {
  background: var(--blue-dark) !important;
}

.enrollment-form-card.is-submitting .hs-form-frame {
  pointer-events: none;
  opacity: 0.72;
}

.enrollment-confirmation {
  margin-top: 1.25rem;
  border: 1px solid #b7ead5;
  border-radius: var(--radius-large);
  background: #ecfdf5;
  padding: 1rem;
}

.enrollment-confirmation h3 {
  color: #0f5132;
  font-size: 1.15rem;
}

.enrollment-confirmation p {
  color: #164e39;
}

.form-privacy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-privacy a {
  color: var(--blue-dark);
  font-weight: 800;
}

.final-cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.final-cta .container {
  max-width: 820px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.slogan {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-footer {
  background: #050e1f;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 7rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--blue);
}

.site-footer h2 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 0.35rem 0;
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.25rem;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 90;
  display: none;
  border-radius: var(--radius);
  background: #128c7e;
  color: var(--white);
  padding: 0.9rem 1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.mobile-sticky {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  display: grid;
  min-height: var(--mobile-offer-bar-height);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 24, 51, 0.98);
  color: var(--white);
  padding: 0.72rem calc(0.65rem + env(safe-area-inset-right)) calc(0.72rem + env(safe-area-inset-bottom)) calc(0.65rem + env(safe-area-inset-left));
  box-shadow: 0 -16px 36px rgba(7, 24, 51, 0.18);
  backdrop-filter: blur(14px);
}

.mobile-sticky .button {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.72rem;
  font-size: clamp(0.76rem, 3.3vw, 0.9rem);
  white-space: nowrap;
}

.mobile-offer-close {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-offer-close:hover,
.mobile-offer-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.report-payment-page {
  background: linear-gradient(180deg, #f6f8fc, var(--white));
}

.report-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.report-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.report-header .brand {
  max-width: min(100%, 360px);
}

.return-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.return-link:hover,
.return-link:focus-visible {
  color: var(--red-dark);
}

.report-payment-section {
  padding: 3rem 0 5rem;
}

.report-payment-shell {
  display: grid;
  gap: 1.2rem;
  max-width: 920px;
}

.return-link--top,
.return-link--bottom {
  justify-self: start;
}

.report-payment-heading {
  margin-bottom: 0;
  text-align: left;
}

.report-payment-heading h1 {
  color: var(--navy);
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.report-payment-heading p {
  max-width: 780px;
}

.report-notice {
  border: 1px solid #bad2ff;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-large);
  background: var(--blue-soft);
  padding: 1rem;
}

.report-notice p {
  margin: 0;
  color: #17376d;
  font-size: 1rem;
  font-weight: 700;
}

.payment-report-card {
  display: grid;
  width: min(100%, 760px);
  gap: 1rem;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: clamp(1.25rem, 5vw, 2.25rem);
  box-shadow: 0 18px 44px rgba(10, 24, 54, 0.1);
}

.payment-report-card h2,
.payment-report-card h3 {
  color: var(--navy);
}

.payment-report-card h2 {
  font-size: clamp(1.4rem, 5vw, 2rem);
}

.privacy-reminder {
  margin: 0;
  border: 1px solid #ffd4d4;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff7f7;
  padding: 1rem;
  color: #43191c;
  font-size: 1rem;
  font-weight: 700;
}

.hubspot-payment-slot {
  width: 100%;
  min-width: 0;
  min-height: 360px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.payment-report-card .hs-form-frame,
.payment-report-card iframe,
.payment-report-card form,
.payment-report-card .hs-form,
.payment-report-card .hs-form-field,
.payment-report-card input,
.payment-report-card select,
.payment-report-card textarea {
  width: 100% !important;
  max-width: 100% !important;
}

.payment-report-card input,
.payment-report-card select,
.payment-report-card textarea {
  min-height: 48px;
  font-size: 1rem !important;
}

.payment-report-card .hs-button,
.payment-report-card input[type="submit"],
.payment-report-card button[type="submit"] {
  width: 100% !important;
  min-height: 52px !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

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

@media (max-width: 359px) {
  .mobile-sticky {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: calc(5.8rem + env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 120;
  display: grid;
  gap: 1rem;
  width: min(calc(100% - 2rem), 720px);
  max-height: min(70vh, 420px);
  margin-inline: auto;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  padding: 1rem;
  color: var(--ink);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

body.has-mobile-offer .consent-banner {
  bottom: calc(var(--mobile-offer-bar-height) + 1rem + env(safe-area-inset-bottom));
}

.consent-banner h2 {
  font-size: 1.1rem;
}

.consent-banner p {
  margin-bottom: 0;
}

.consent-actions {
  display: grid;
  gap: 0.6rem;
}

.consent-actions .button {
  width: 100%;
  min-height: 52px;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  body.has-mobile-offer {
    padding-bottom: calc(var(--mobile-offer-bar-height) + env(safe-area-inset-bottom));
  }
}

@media (min-width: 640px) {
  .hero-actions,
  .form-actions,
  .consent-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .orientation-offer-card .button {
    width: auto;
    justify-self: start;
  }

  .hero-actions--center {
    justify-content: center;
  }

  .fact-grid,
  .card-grid--2,
  .form-grid,
  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  details ul {
    columns: 2;
  }

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

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

  .testimonial-layout--outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .refund-policy-card--wide {
    grid-column: 1 / -1;
  }

  .offer-reminder .button {
    width: auto;
  }
}

@media (min-width: 768px) {
  :root {
    --offer-bar-height: 62px;
  }

  .announcement__inner {
    min-height: var(--offer-bar-height);
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    padding: 0.35rem 0;
  }

  .announcement p {
    font-size: 0.82rem;
    text-align: left;
    white-space: normal;
    text-overflow: clip;
  }

  .announcement__desktop {
    display: inline;
  }

  .announcement__mobile,
  .announcement__mobile-short {
    display: none;
  }

  .announcement .button {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-grid {
    min-height: 80px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.35rem;
  }

  .brand {
    flex: 0 1 128px;
    max-width: 128px;
    gap: 0.45rem;
  }

  .brand img {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.05rem;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .site-nav a {
    flex: 0 1 auto;
    padding: 0.45rem 0.16rem;
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .site-nav .mobile-drawer-cta {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.45rem;
  }

  .header-actions .button--primary {
    min-height: 38px;
    padding: 0.52rem 0.46rem;
    font-size: 0.59rem;
    white-space: nowrap;
  }

  .header-actions .button--outline {
    display: none;
  }

  .mobile-sticky {
    display: none !important;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 6rem 0;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 0.08rem;
  }

  .site-nav a {
    padding: 0.55rem 0.38rem;
    font-size: 0.76rem;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .hero {
    padding: 4.8rem 0 5.8rem;
  }

  .hero-grid,
  .split-grid,
  .enrollment-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 2.4rem;
  }

  .enrollment-layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 3rem;
  }

  .enrollment-form-card {
    justify-self: end;
    padding: 2rem;
  }

  .split-grid--narrow {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.65fr);
  }

  .tuition-price-grid {
    grid-template-columns: 0.8fr 1fr;
    align-items: end;
  }

  .offer-reminder__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .offer-reminder .button {
    justify-self: end;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .hero-media {
    padding-top: 0.9rem;
  }

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

  .career-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .testimonial-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-layout--outcomes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-card--featured {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 0.85fr 0.7fr;
  }

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

  .whatsapp-float {
    display: inline-flex;
  }

  .mobile-sticky {
    display: none;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .consent-banner {
    bottom: 1rem;
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .consent-actions .button {
    width: auto;
  }
}

@media (min-width: 1080px) {
  :root {
    --offer-bar-height: 44px;
  }

  .announcement p {
    font-size: 0.95rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand {
    flex-basis: 170px;
    max-width: 170px;
  }

  .brand img {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .site-nav a {
    padding: 0.62rem 0.7rem;
    font-size: 0.86rem;
  }

  .header-actions .button--primary {
    min-height: 40px;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
  }
}

@media (min-width: 1200px) {
  .brand {
    flex-basis: auto;
    max-width: 260px;
  }

  .brand small {
    display: block;
  }

  .site-nav {
    gap: 0.12rem;
  }
}

@media (min-width: 1280px) {
  .header-actions .button--outline {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 899px) {
  .enrollment-form-card .form-columns-2,
  .enrollment-form-card .form-columns-3,
  .enrollment-form-card .form-columns-2 .hs-form-field,
  .enrollment-form-card .form-columns-3 .hs-form-field {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
