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

:root {
  --brand: #e41e26;
  --brand-border: rgba(231, 0, 11, 0.5);
  --ink: #0f172b;
  --muted: #45556c;
  --footer-muted: #90a1b9;
  --testimonial-accent: #c84c44;
  --surface: #f8fafc;
  --line: #f1f5f9;
  --font-heading: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow-card: 0 20px 25px -5px rgba(226, 232, 240, 0.5),
    0 8px 10px -6px rgba(226, 232, 240, 0.5);
  --shadow-btn: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-feature: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --header-h: 88px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  background: #fff;
  padding-top: var(--header-h);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

.text-brand {
  color: var(--brand);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #000;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 68px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  display: block;
  height: clamp(40px, 8vw, 64px);
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 48px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.35px;
}

.site-nav__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
}

.site-nav__icon img {
  width: 16px;
  height: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.35px;
  border-radius: 12px;
  transition: transform 0.15s, filter 0.15s;
}

button.btn {
  font: inherit;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  margin: 0;
  appearance: none;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn:active {
  transform: scale(0.98);
}

.btn--header {
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  padding: 0 20px;
  min-height: 52px;
  box-shadow: var(--shadow-btn);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0a0a0a;
    padding: 20px clamp(16px, 4vw, 68px) 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    border-bottom: 1px solid #222;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s 0.35s;
  }

  body.nav-open .site-nav {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav .btn--header {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .site-nav__link {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 76px;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .btn--header {
    font-size: 12px;
    padding-inline: 12px;
  }
}

/* ——— Hero ——— */
.hero {
  background: #fff;
  overflow: hidden;
}

.hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 666.52;
  object-fit: cover;
}

@media (max-width: 900px) {
  /* Local mobile art (`images/*.webp`) uses intrinsic aspect ratio instead of desktop crop. */
  .hero__img {
    aspect-ratio: auto;
  }
}

/* ——— Stats (full-viewport continuous ticker) ——— */
.stats-ticker {
  --stats-visible: 3;
  position: relative;
  background: var(--brand);
  color: #fff;
  margin: 0;
  user-select: none;
  height: 88px;
}

.stats-ticker__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.stats-ticker__track {
  height: 100%;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: stats-ticker-scroll 18s linear infinite;
  width: max-content;
}

.stats-ticker__group {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}

.stats-ticker__item {
  /* Use viewport width so exactly N items are visible and the seam doesn't overlap. */
  flex: 0 0 calc(100vw / var(--stats-visible));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(12px, 3vw, 32px);
  box-sizing: border-box;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  align-items: center;
}

.stat--hero .stat__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat--hero .stat__label {
  font-weight: 700;
  font-style: normal;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.35px;
  line-height: 1.2;
  max-width: 20ch;
}

@keyframes stats-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* One group width (we duplicate group in JS) */
    transform: translateX(-50%);
  }
}

.stats-ticker:hover .stats-ticker__track {
  animation-play-state: paused;
}

@media (max-width: 900px) {
  .stats-ticker {
    --stats-visible: 2;
  }
}

@media (max-width: 560px) {
  .stats-ticker {
    --stats-visible: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-ticker__track {
    animation: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stats-ticker__group {
    width: max-content;
  }

  .stats-ticker__item {
    flex: 0 0 auto;
  }
}

/* ——— Why MBAs fail ——— */
.fail {
  background: #000;
  color: #fff;
  padding: clamp(48px, 10vw, 72px) clamp(16px, 5vw, 48px) clamp(56px, 10vw, 88px);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 35px);
  letter-spacing: -0.9px;
  text-align: center;
  margin: 0 0 clamp(36px, 8vw, 56px);
  line-height: 1.2;
}

.section-title--light {
  color: #fff;
}

.fail__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: clamp(20px, 4vw, 32px);
}

.fail-card {
  flex: 0 1 140px;
  text-align: center;
}

.fail-card__frame {
  position: relative;
  width: min(96px, 22vw);
  height: min(96px, 22vw);
  margin: 0 auto 14px;
  /* border: 1px solid var(--brand-border); */
  border-radius: 16px;
  padding: 10px;
}

.fail-card__inner {
  height: 100%;
  border-radius: 12px;
  background: #000;
  border: 2px solid rgba(251, 44, 54, 0.3);
  display: grid;
  place-items: center;
}

.fail-card__inner img {
  width: 26px;
  height: 26px;
}

.fail-card__badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand);
  border: 2px solid #000;
  display: grid;
  place-items: center;
}

.fail-card__badge img {
  width: 14px;
  height: 14px;
}

.fail-card__label {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.36px;
  line-height: 1.3;
}

/* Copy + enquiry form beneath icon row (same black section). */
.fail__lead {
  max-width: 1200px;
  margin: clamp(52px, 9vw, 96px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.fail__lead-copy {
  padding-top: clamp(4px, 1vw, 12px);
}

.fail__lead-title {
  margin: 0 0 clamp(18px, 3vw, 24px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.85vw + 0.85rem, 2.125rem);
  line-height: 1.22;
  letter-spacing: -0.6px;
  color: #fff;
  text-align: left;
}

.fail__lead-text {
  margin: 0;
  font-size: clamp(15px, 1.35vw + 14px, 17px);
  line-height: 1.67;
  letter-spacing: -0.22px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.fail__lead-form-heading {
  margin: 0 0 clamp(12px, 2vw, 16px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.4vw + 0.95rem, 1.375rem);
  line-height: 1.28;
  color: #fff;
  letter-spacing: -0.4px;
}

.fail__lead-form-panel {
  background: #fff;
  border-radius: 16px;
  padding: clamp(14px, 3vw, 22px);
  border: 1px solid rgba(251, 44, 54, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}


@media (max-width: 900px) {
  .fail__lead {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }

  .fail__lead-text {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .fail {
    padding-inline: clamp(18px, 6vw, 28px);
    padding-bottom: clamp(48px, 12vw, 72px);
  }

  /* Title → grid spacing closer to mobile comp */
  .fail .section-title {
    margin-bottom: clamp(36px, 11vw, 52px);
    padding-inline: clamp(4px, 2vw, 12px);
    line-height: 1.25;
  }

  /*
   * Mobile: 2-column grid, 2 + 2 + 1 (last row left column only).
   */
  .fail__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 4vw, 20px);
    row-gap: clamp(28px, 9vw, 40px);
    justify-items: center;
    align-items: start;
  }

  .fail-card {
    flex: unset;
    width: 100%;
    max-width: 164px;
    justify-self: center;
  }

  .fail-card:last-child {
    grid-column: 1;
  }

  .fail-card__frame {
    width: clamp(80px, 42vw, 104px);
    height: clamp(80px, 42vw, 104px);
    max-width: 104px;
    max-height: 104px;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(251, 44, 54, 0.12);
  }

  .fail-card__inner img {
    width: 26px;
    height: 26px;
  }

  /* Single-line labels match narrow columns */
  .fail-card__label br {
    display: none;
  }
}

/* ——— Features ——— */
.features {
  padding: clamp(44px, 8vw, 56px) clamp(16px, 5vw, 44px)
    clamp(48px, 10vw, 72px);
  background: #fff;
}

.section-title--dark {
  color: var(--ink);
}

.features__header {
  text-align: center;
  margin-bottom: clamp(28px, 6vw, 40px);
  position: relative;
}

.features__underline {
  display: block;
  width: min(188px, 42vw);
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
  margin: 10px auto 0;
}

.features__subtitle {
  margin: 20px 0 0;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.46px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 1360px;
  margin: 0 auto;
}

.feature-card {
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 32px 16px 40px;
  text-align: center;
  box-shadow: var(--shadow-feature);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(228, 30, 38, 0.45),
    var(--shadow-feature);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 28px;
}

.feature-card__title {
  margin: 0 0 auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(15px, 1.9vw, 17px);
  letter-spacing: -0.45px;
  line-height: 1.45;
}

.feature-card__text {
  margin: 16px 0 0;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.32px;
  line-height: 1.65;
}

.feature-card__accent {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

@media (max-width: 1200px) {
  .features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 280px;
  }
}

@media (max-width: 420px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card__text br {
    display: none;
  }
}

/* ——— Curriculum / comparison banner ——— */
.curriculum-banner {
  background: #fff;
}

.curriculum-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 479.25;
  object-fit: cover;
}

@media (max-width: 900px) {
  .curriculum-banner img {
    aspect-ratio: auto;
  }
}

/* ——— Partner marquee ——— */
.partners {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 48px;
  overflow: hidden;
}

.partners__title {
  margin: 0 0 28px;
  padding: 0 clamp(16px, 5vw, 44px);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.9px;
  color: var(--ink);
}

.marquee {
  overflow: hidden;
  margin-bottom: 8px;
}

.marquee:last-child {
  margin-bottom: 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-left 52s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-name: marquee-right;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 56px);
  padding-inline: 8px;
}

.marquee__item {
  flex: 0 0 auto;
  width: clamp(140px, 22vw, 181px);
  height: clamp(72px, 12vw, 112px);
  display: grid;
  place-items: center;
}

.marquee__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%) opacity(0.92);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }

  .marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .marquee__track {
    width: auto;
    flex-wrap: nowrap;
  }
}

/* ——— Testimonials ——— */
.testimonials {
  background: rgba(248, 250, 252, 0.5);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 104px);
}

.testimonials__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 5vw, 32px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 14px;
  margin-bottom: clamp(20px, 4vw, 28px);
}

.testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--surface), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.testimonial__name {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
}

.testimonial__role {
  margin: 6px 0 0;
  color: var(--testimonial-accent);
  font-weight: 500;
  font-size: 14px;
}

/* Decorative closing double-quote (matches comp: terracotta, top-right). */
.testimonial__quote {
  display: inline-flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: flex-end;
  line-height: 0.82;
  color: var(--testimonial-accent);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  transform: translateX(-33px);
}

.testimonial__quote-mark {
  display: inline-block;
  font-size: clamp(3.75rem, 6vw + 2.25rem, 6rem);
  font-weight: 400;
  letter-spacing: -0.34em;
  margin-inline: -0.035em;
  text-indent: 0;
  user-select: none;
}

.testimonial__body {
  margin: 0;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: -0.24px;
}

@media (max-width: 960px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  .testimonial__head {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .testimonial__quote {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    justify-self: end;
    transform: translateY(-6px);
  }

  .testimonial__quote-mark {
    /* Extra presence on stacked header layout — still scales with viewport. */
    font-size: clamp(4rem, 15vw + 1rem, 5.65rem);
  }

  .testimonial__avatar {
    grid-column: 1;
  }
}

/* ——— Final CTA image ——— */
.final-cta {
  background: #fff;
}

.final-cta__wrap {
  position: relative;
  display: block;
  line-height: 0;
}

.final-cta__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 644.63;
  object-fit: cover;
}

@media (max-width: 900px) {
  .final-cta__img {
    aspect-ratio: auto;
  }
}

/* Invisible hit target over the APPLY NOW / CTA panel (right column of art). */
.final-cta__apply-hit {
  position: absolute;
  top: 17%;
  right: 3.5%;
  width: min(38%, 340px);
  height: min(58%, 340px);
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  border-radius: 10px;
}

.final-cta__apply-hit:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

/*
 * Desktop art: APPLY sits top-right → absolute % like above.
 * Mobile art (`images/3.webp`): CTA sits bottom-center → cover lower band so taps reach the modal.
 */
@media (max-width: 900px) {
  .final-cta__apply-hit {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 400px);
    height: clamp(112px, 38%, 200px);
    max-height: 46%;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}

/* Apply / brochure modal dialogs */
.apply-dialog {
  max-width: calc(100vw - 24px);
  width: min(520px, 100vw - 24px);
  padding: 0;
  margin: auto;
  border: none;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.apply-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.apply-dialog__sheet {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
}

.apply-dialog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.apply-dialog__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.apply-dialog__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.apply-dialog__close:hover {
  background: var(--line);
}

.apply-dialog__body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 200px;
}

.apply-dialog__body--form {
  padding: 18px;
}

.apply-form {
  display: grid;
  gap: 14px;
}

.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .apply-form__row {
    grid-template-columns: 1fr;
  }
}

.brochure-form__submit,
.apply-form__submit {
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.35px;
  cursor: pointer;
}

.brochure-form__submit:hover,
.apply-form__submit:hover {
  filter: brightness(1.06);
}

.brochure-form__submit:disabled,
.apply-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ——— Footer ——— */
.site-footer {
  background: #000;
  border-top: 4px solid var(--brand);
  padding: 28px clamp(16px, 4vw, 36px) 36px;
}

.site-footer__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.footer-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
}

button.footer-link {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

button.footer-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 6px;
  border-radius: 18px;
}

.brochure-dialog__body {
  padding: 18px;
}

.brochure-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
  color: var(--muted);
}

.field__input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.field__input:focus {
  border-color: rgba(228, 30, 38, 0.55);
  box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.14);
}

.brochure-form__hint {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.footer-link__icon {
  grid-row: 1 / span 2;
}

.footer-link__icon img {
  display: block;
}

.footer-link__icon--phone {
  width: 52px;
  height: 52px;
  background: var(--brand);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 10px 15px -3px rgba(251, 44, 54, 0.2);
}

.footer-link__icon--wa {
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.2);
}

.footer-link__icon--doc {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.footer-link__icon--pin {
  width: 48px;
  height: 48px;
}

.footer-link__label {
  grid-column: 2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  color: var(--footer-muted);
}

.footer-link__value {
  grid-column: 2;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.75px;
  color: #fff;
}

.footer-link:hover .footer-link__value {
  color: var(--brand);
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 18px 14px 28px;
  }

  .site-footer__inner {
    gap: 16px;
  }

  .footer-link {
    padding: 14px 14px;
    border-radius: 24px;
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0) 72%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.035) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    align-items: center;
  }

  /* Override base `button.footer-link { background: transparent; padding: 0; }` on mobile cards. */
  button.footer-link {
    padding: 14px 14px;
    border-radius: 24px;
    background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0) 72%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.035) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    color: inherit;
  }

  .footer-link__icon--phone,
  .footer-link__icon--wa,
  .footer-link__icon--doc,
  .footer-link__icon--pin {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .footer-link__icon--doc {
    border-radius: 16px;
  }

  .footer-link__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .footer-link__label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .footer-link__value {
    font-size: 20px;
    letter-spacing: -0.04em;
    line-height: 1.05;
  }
}
h3.feature-card__title {
  margin: 0px;
}
.mbaActually {
  margin-bottom: 10px !important;
}
.marquee__track {
  margin-top: 20px !important;
}
h4#fail-lead-form-title {
  text-align: center;
}