:root {
  --navy: #1e3240;
  --navy-soft: rgba(30, 50, 64, 0.87);
  --beige: #f2ece1;
  --beige-dark: #e3d9c7;
  --beige-warm: #ded5c4;
  --cream: #e8d9c8;
  --cream-light: #fffaf2;
  --gold: #a8845a;
  --text: #1a1a1a;
  --max: 1440px;
  --mba-gutter: clamp(1rem, 3vw, 2.5rem);
  --mba-header-h: 3rem;
  --hero-tab-w: 17rem;
  --hero-tab-rise: clamp(5rem, 14vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--mba-header-h);
  background: #000;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Assistant', system-ui, sans-serif;
  color: var(--text);
  background: #000;
  line-height: 1.45;
}

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

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

.mba-page {
  overflow: clip;
  background: var(--beige);
}

/* Sticky site header */
.mba-site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  direction: rtl;
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mba-site-header__bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: var(--mba-header-h);
  padding: 0.35rem var(--mba-gutter);
  max-width: var(--max);
  margin-inline: auto;
}

.mba-site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.mba-site-header__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.15rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mba-site-header__link {
  display: block;
  padding: 0.35rem 0;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(232, 217, 200, 0.88);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.mba-site-header__link:hover,
.mba-site-header__link:focus-visible {
  color: #fff;
}

.mba-site-header__link.is-active {
  color: #fff;
}

.mba-site-header__toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.35rem;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.mba-site-header__toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mba-site-header__call {
  display: none;
}

.mba-site-header__call-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  color: #fff;
}

.mba-site-header__toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 1.35rem;
}

.mba-site-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mba-site-header.is-nav-open .mba-site-header__toggle-bar:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.mba-site-header.is-nav-open .mba-site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.mba-site-header.is-nav-open .mba-site-header__toggle-bar:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.mba-site-header__overlay {
  display: none;
}

.mba-site-header__overlay[hidden] {
  display: none !important;
}

body.mba-nav-open {
  overflow: hidden;
}

@media (max-width: 47.99rem) {
  .mba-site-header__bar {
    justify-content: flex-start;
  }

  .mba-site-header__toggle {
    display: inline-flex;
    margin-inline: 0;
  }

  .mba-site-header__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    margin-inline-start: auto;
    color: #fff;
    text-decoration: none;
  }

  .mba-site-header__call:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 0.35rem;
  }

  .mba-site-header__nav {
    position: fixed;
    inset-inline: 0;
    top: var(--mba-header-h);
    bottom: 0;
    z-index: 201;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    padding: clamp(0.75rem, 3vw, 1.25rem) var(--mba-gutter) clamp(1.25rem, 4vw, 2rem);
    background: var(--navy);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .mba-site-header__menu {
    flex: 0 0 auto;
    width: 100%;
  }

  .mba-site-header__nav-actions {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
    margin-top: 0.65rem;
    padding-top: 0.85rem;
  }

  .mba-site-header__nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    color: #fff;
    text-decoration: none;
  }

  .mba-site-header__nav-action svg {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    fill: currentColor;
  }

  .mba-site-header.is-nav-open .mba-site-header__call {
    opacity: 0;
    pointer-events: none;
  }

  .mba-site-header__nav-action:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 0.35rem;
  }

  .mba-site-header__nav-action[hidden] {
    display: none;
  }

  .mba-site-header.is-nav-open .mba-site-header__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mba-site-header.is-nav-open .mba-site-header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--mba-header-h);
    z-index: 200;
    background: rgba(0, 0, 0, 0.45);
  }

  .mba-site-header__list {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .mba-site-header__item {
    width: 100%;
  }

  .mba-site-header__link {
    padding: clamp(0.95rem, 3.5vw, 1.15rem) 1rem;
    font-size: clamp(1.2rem, 5vw, 1.45rem);
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (min-width: 48rem) {
  .mba-site-header__bar {
    min-height: 3.25rem;
    padding-block: 0.5rem;
    justify-content: center;
  }

  .mba-site-header__nav {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
  }

  .mba-site-header__list {
    justify-content: center;
  }
}

/* Hero */
.mba-hero {
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

.mba-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 620;
  max-height: clamp(18rem, 48vw, 32rem);
  overflow: hidden;
}

.mba-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.mba-hero__body {
  position: relative;
  padding-block: 0 clamp(2.5rem, 6vw, 4.5rem);
  padding-inline: 0;
  text-align: center;
  color: #fff;
}

.mba-hero__tab {
  position: relative;
  z-index: 2;
  width: min(var(--hero-tab-w), 78vw);
  margin: calc(-1 * var(--hero-tab-rise)) auto 0;
  padding: clamp(1.25rem, 3.5vw, 2rem) clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 2vw, 1.25rem);
  background: var(--navy);
  border-radius: 50% 50% 0 0 / var(--hero-tab-rise) var(--hero-tab-rise) 0 0;
}

.mba-hero__logo {
  display: block;
  width: min(11.5rem, 62vw);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.mba-hero__headline {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  font-size: clamp(1.85rem, 5.2vw, 3.75rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.mba-hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: clamp(0.85rem, 2vw, 1.35rem) auto;
  max-width: 28rem;
}

.mba-hero__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(232, 217, 200, 0.55);
}

.mba-hero__rule-mark {
  display: block;
  width: 1.35rem;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.9;
}

.mba-hero__sub {
  margin: 0;
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.mba-hero__price {
  margin: clamp(0.5rem, 1.5vw, 0.85rem) 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  color: #fff;
}

.mba-hero__price-label {
  font-size: clamp(0.95rem, 1.6vw, 1.4375rem);
  font-weight: 600;
}

.mba-hero__price strong {
  font-size: inherit;
  font-weight: 600;
}

/* Content shell — backgrounds stay full-bleed on the section */
.mba-container,
.mba-section__inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--mba-gutter);
  box-sizing: border-box;
}

/* Sections */
.mba-section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: 0;
}

.mba-section--flush {
  padding-top: 0;
}

.mba-section--beige { background: var(--beige); }
.mba-section--beige-dark { background: var(--beige-dark); }
.mba-section--beige-warm { background: var(--beige-warm); }
.mba-section--navy {
  background: var(--navy);
  color: var(--cream);
}

.mba-section__title {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 1.9375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

.mba-section__subtitle {
  margin: -0.25rem 0 1.5rem;
  color: var(--gold);
  font-size: clamp(1rem, 1.6vw, 1.5625rem);
  font-weight: 600;
  text-align: center;
}

/* About */
.mba-about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mba-about__title {
  width: 100%;
  max-width: 55rem;
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 1.9375rem);
  font-weight: 600;
  text-align: start;
}

.mba-about .mba-prose {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  text-align: start;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.92);
}

.mba-prose {
  max-width: 55rem;
  margin-inline: auto;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.mba-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--cream-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mba-about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: clamp(1.1rem, 2.5vw, 1.75rem) clamp(0.5rem, 1.5vw, 1rem);
  text-align: center;
  border-inline-start: 1px solid rgba(0, 0, 0, 0.1);
}

.mba-about-stats__item:first-child {
  border-inline-start: 0;
}

.mba-about-stats__num {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.mba-about-stats__label {
  font-size: clamp(0.75rem, 1.2vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  max-width: 9rem;
}

.mba-prose--center {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mba-prose p + p {
  margin-top: 0.85rem;
}

/* Carousel */
.mba-carousel-block {
  padding: 0;
  margin: 0;
  background: var(--beige);
}

.mba-carousel-block__label {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  background: var(--navy-soft);
  border: 1px solid rgba(0, 0, 0, 0.13);
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.9375rem);
  font-weight: 600;
}

.mba-carousel {
  position: relative;
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--mba-gutter);
  box-sizing: border-box;
}

.mba-carousel-block + .mba-carousel-block {
  margin-top: 0;
}

.mba-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 44rem;
  background: #0a0a0a;
  direction: ltr;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-drag: none;
}

.mba-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.mba-carousel__track {
  display: flex;
  height: 100%;
  gap: 0;
  will-change: transform;
}

.mba-carousel__track.is-animating {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.mba-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.mba-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.mba-carousel__overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
  pointer-events: none;
}

.mba-carousel__label {
  flex: 0 0 auto;
  padding: 0.55rem 1.5rem;
  background: var(--navy-soft);
  border: 1px solid rgba(0, 0, 0, 0.13);
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.9375rem);
  font-weight: 600;
  line-height: 1.25;
}

.mba-carousel__dots {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  direction: ltr;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.mba-carousel__dot {
  display: block;
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s, background 0.2s;
}

.mba-carousel__dot.is-active {
  background: var(--cream);
  transform: scale(1.3);
}

/* Image panels */
.mba-image-panel {
  overflow: hidden;
}

.mba-image-panel img {
  width: 100%;
}

.mba-image-panel--street {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Map row — explicit columns match Figma (text left, map right) */
.mba-map-row {
  display: grid;
  gap: 0.65rem;
  align-items: stretch;
}

.mba-map-row__card {
  background: #fff;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: clamp(16rem, 34vw, 22rem);
}

.mba-map-row__copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mba-map-row__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.mba-map-row__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mba-map-row__body {
  margin: 0;
  color: var(--text);
  font-size: clamp(0.95rem, 1.25vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
}

.mba-cta-btn {
  position: relative;
  z-index: 2;
  padding: 0.6rem 1.35rem;
  background: var(--navy);
  border: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
}

.mba-cta-btn .mba-btn-premium__label {
  color: #fff;
}

.mba-map-row__btn {
  align-self: flex-start;
  padding: 0.6rem 1.35rem;
  background: var(--gold);
  border: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.mba-map-row__btn .mba-btn-premium__label {
  color: var(--text);
}

.mba-map-row__map {
  min-height: clamp(16rem, 34vw, 22rem);
}

/* Feature grid (למה כאן) */
.mba-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  color: var(--gold);
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

.mba-feature-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: visible;
  padding-block: 0.65rem;
}

.mba-feature-card {
  position: relative;
  z-index: 0;
  transform-origin: center center;
  cursor: default;
  background: var(--cream-light);
  border: 1px solid rgba(30, 50, 64, 0.07);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: start;
  width: 100%;
}

.mba-feature-card__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.mba-feature-card__body {
  margin: 0;
  font-size: clamp(0.8rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.82);
}

.mba-feature-card:focus-visible {
  outline: 2px solid rgba(168, 132, 90, 0.5);
  outline-offset: 3px;
}

/* Map placeholder */
.mba-map-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: inherit;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #2b2b2b;
  overflow: hidden;
  direction: rtl;
}

.mba-map-placeholder__roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mba-map-placeholder__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  width: min(22rem, 100%);
  text-align: center;
  color: #fff;
}

.mba-map-placeholder__pin-icon {
  display: block;
  width: clamp(2.75rem, 6vw, 3.75rem);
  height: auto;
  aspect-ratio: 1;
}

.mba-map-placeholder__copy {
  max-width: 20rem;
}

.mba-map-placeholder__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.mba-map-placeholder__text {
  margin: 0;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.mba-map-row__body p {
  margin: 0 0 0.65rem;
}

.mba-map-row__body p:last-child {
  margin-bottom: 0;
}

/* CTA bar */
.mba-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.mba-cta-bar--inline {
  padding-block: clamp(1.25rem, 3vw, 2rem);
  background: var(--beige);
}

.mba-cta-bar--dark {
  background: var(--navy);
}

.mba-cta-bar__call {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mba-cta-bar--dark .mba-cta-bar__call {
  color: var(--cream);
}

.mba-lead__call {
  margin-top: 0.75rem;
  color: var(--cream);
}

/* Checklist */
.mba-checklist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mba-checklist li {
  position: relative;
  padding-inline-start: 1.75rem;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.4;
}

.mba-checklist li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 700;
}

.mba-checklist--compact {
  max-width: 32rem;
}

.mba-checklist--compact li {
  font-weight: 500;
}

/* Community */
.mba-community .mba-prose {
  max-width: 48rem;
  margin-inline: auto;
}

/* Financial terms */
.mba-financial {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2rem, 4.5vw, 3.25rem);
}

.mba-financial__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.mba-financial__title {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 1.9375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mba-financial__intro {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.mba-financial__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  overflow: visible;
  padding-block: 0.65rem;
}

.mba-financial__item {
  position: relative;
  z-index: 0;
  transform-origin: center center;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 4.75rem;
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2vw, 1.35rem);
  background: var(--cream-light);
  border: 1px solid rgba(30, 50, 64, 0.07);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  direction: rtl;
}

.mba-financial__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mba-financial__check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: none;
}

.mba-financial__item-text {
  flex: 0 1 auto;
  color: var(--text);
  font-size: clamp(0.95rem, 1.25vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  text-wrap: pretty;
}

@media (min-width: 48rem) {
  .mba-financial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Spec grid */
.mba-spec-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 0.25rem;
  overflow: visible;
  padding-block: 0.65rem;
}

.mba-spec-card {
  position: relative;
  z-index: 0;
  transform-origin: center center;
  cursor: default;
  background: var(--cream-light);
  border: 1px solid rgba(30, 50, 64, 0.07);
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 0.65rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.mba-spec-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mba-spec-card__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.mba-spec-card__body {
  margin: 0;
  font-size: clamp(0.8rem, 1.1vw, 0.875rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.82);
}

/* Audience cards — full-width scroll strip, items from inline-start */
.mba-cards {
  --mba-card-w: 17.5rem;
  --mba-card-h: 27.125rem;
  --mba-card-img-h: 11.875rem;
  --mba-card-body-fs: 0.8125rem;
  --mba-card-body-lh: 1.25;
  --mba-card-body-lines: 5;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--mba-gutter);
  padding-inline: var(--mba-gutter);
  padding-bottom: 0.65rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 132, 90, 0.45) transparent;
  touch-action: pan-x;
  user-select: none;
  cursor: grab;
}

.mba-cards.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.mba-cards:focus-visible {
  outline: 2px solid rgba(168, 132, 90, 0.45);
  outline-offset: 3px;
}

#audience .mba-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#audience .mba-section__title {
  width: 100%;
}

#audience .mba-cards {
  width: 100%;
  max-width: 100%;
}

.mba-cards::-webkit-scrollbar {
  height: 0.35rem;
}

.mba-cards::-webkit-scrollbar-thumb {
  background: rgba(168, 132, 90, 0.45);
  border-radius: 999px;
}

.mba-card {
  flex: 0 0 var(--mba-card-w);
  width: var(--mba-card-w);
  min-width: var(--mba-card-w);
  max-width: var(--mba-card-w);
  height: var(--mba-card-h);
  min-height: var(--mba-card-h);
  max-height: var(--mba-card-h);
  scroll-snap-align: start;
  box-sizing: border-box;
  background: var(--cream-light);
  border: 1px solid rgba(30, 50, 64, 0.1);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}

.mba-card__img {
  flex: 0 0 var(--mba-card-img-h);
  width: 100%;
  height: var(--mba-card-img-h);
  overflow: hidden;
}

.mba-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mba-card__title {
  margin: 0;
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

#audience .mba-card__title {
  font-size: calc(1.0625rem + 12px);
  min-height: calc(1.2 * (1.0625rem + 12px));
}

.mba-card__body {
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
  font-size: var(--mba-card-body-fs);
  font-weight: 600;
  line-height: var(--mba-card-body-lh);
  max-height: calc(var(--mba-card-body-lines) * var(--mba-card-body-lh) * var(--mba-card-body-fs));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

/* Heritage — text left, image right (Figma) */
.mba-heritage {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.mba-heritage__content {
  min-width: 0;
}

.mba-heritage__title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.9375rem);
  font-weight: 600;
  color: var(--cream);
}

.mba-heritage__text {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
}

.mba-heritage__text p {
  margin: 0 0 0.75rem;
}

.mba-heritage__visual img {
  width: 100%;
}

/* FAQ — mobile: 1 col; tablet+: 2 cols × 5 rows */
.mba-faq {
  max-width: 49rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: start;
}

@media (min-width: 48rem) {
  .mba-faq {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 0.5rem 1rem;
  }
}

.mba-faq__item {
  background: var(--cream-light);
  border: 1px solid rgba(30, 50, 64, 0.08);
}

.mba-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  font-weight: 600;
  text-align: start;
  cursor: pointer;
}

.mba-faq__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s;
}

.mba-faq__item.is-open .mba-faq__icon {
  transform: rotate(45deg);
}

.mba-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.mba-faq__item.is-open .mba-faq__answer {
  grid-template-rows: 1fr;
}

@media (min-width: 48rem) {
  .mba-faq__icon {
    display: none;
  }

  .mba-faq__question {
    cursor: default;
    pointer-events: none;
    justify-content: flex-start;
  }

  .mba-faq__answer {
    grid-template-rows: 1fr;
  }
}

.mba-faq__answer-inner {
  overflow: hidden;
}

.mba-faq__answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.85);
}

/* Footer / lead */
.mba-section--beige-dark:has(+ .mba-contact) {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mba-contact {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: 0;
}

/* Bayner credit strip — matches roots-bar menu footer */
.mba-credit-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: #000;
  line-height: 0;
  font-size: 0;
}

.mba-credit__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0.625rem 1rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0));
  box-sizing: border-box;
  background: #000;
}

.mba-credit__link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.mba-credit__img {
  display: block;
  width: auto;
  height: 1.75rem;
  max-height: 1.75rem;
  max-width: min(100%, 6.875rem);
  margin: 0;
  object-fit: contain;
  background: #000;
}

.mba-lead {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.mba-lead__copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mba-lead__eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.mba-lead__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mba-lead__body {
  margin: 0;
  max-width: 36rem;
  color: var(--cream);
  font-size: clamp(0.95rem, 1.25vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
}

.mba-lead__form-wrap {
  border: 1px solid rgba(232, 217, 200, 0.35);
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.mba-lead__form-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mba-lead__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mba-lead__form input {
  margin: 0;
  padding: 0 1rem;
  height: 3rem;
  border: 0;
  border-radius: 0;
  background: var(--cream-light);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  text-align: right;
  direction: rtl;
  box-sizing: border-box;
  flex-shrink: 0;
}

.mba-lead__form input::placeholder {
  color: rgba(26, 26, 26, 0.55);
  text-align: right;
}

.mba-lead__consent {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: start;
  direction: rtl;
  cursor: pointer;
  flex-shrink: 0;
}

.mba-lead__consent input[type='checkbox'] {
  margin: 0;
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 1.125rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.mba-lead__form button {
  margin: 0;
  padding: 0 1rem;
  height: 3rem;
  border: 0;
  background: var(--gold);
  color: var(--text);
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Desktop */
@media (min-width: 48rem) {
  .mba-hero__image {
    aspect-ratio: 1440 / 700;
    max-height: 36rem;
  }

  .mba-hero__body {
    padding-bottom: 4.5rem;
  }

  .mba-map-row {
    grid-template-columns: 1fr 1fr;
  }

  .mba-map-row__card {
    grid-column: 1;
  }

  .mba-map-row__map {
    grid-column: 2;
  }

  .mba-heritage {
    grid-template-columns: 1fr 1fr;
  }

  .mba-heritage__content {
    grid-column: 1;
  }

  .mba-heritage__visual {
    grid-column: 2;
  }

  .mba-lead {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }

  .mba-lead__copy {
    grid-column: 1;
    text-align: start;
  }

  .mba-lead__form-wrap {
    grid-column: 2;
    max-width: 28rem;
    justify-self: end;
    width: 100%;
  }

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

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

/* Mobile tweaks */
@media (max-width: 47.99rem) {
  :root {
    --hero-tab-w: 14.5rem;
    --hero-tab-rise: 4.25rem;
  }

  .mba-hero__image {
    aspect-ratio: 4 / 3;
    max-height: 16rem;
  }

  .mba-hero__logo {
    width: min(9.5rem, 70vw);
  }

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

  .mba-about-stats__item:nth-child(odd) {
    border-inline-start: 0;
  }

  .mba-about-stats__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mba-carousel__overlay {
    gap: 0.85rem;
    padding-bottom: 1rem;
  }

  .mba-carousel__label {
    font-size: 0.95rem;
    padding: 0.45rem 1rem;
  }

  .mba-lead__copy {
    text-align: center;
    align-items: center;
  }

  .mba-lead__body {
    max-width: none;
  }

  .mba-lead__form-title {
    text-align: center;
  }

  .mba-feature-grid,
  .mba-spec-grid,
  .mba-financial__grid {
    grid-template-columns: 1fr;
  }

  .mba-feature-card .mba-icon,
  .mba-spec-card .mba-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
  }
}
