:root {
  --bbae-ink: #09254a;
  --bbae-muted: #536176;
  --bbae-blue: #0878be;
  --bbae-blue-dark: #004c82;
  --bbae-sky: #eaf7ff;
  --bbae-line: #dce8f3;
  --bbae-white: #ffffff;
  --bbae-shadow: 0 18px 50px rgba(8, 42, 78, 0.11);
}

.bbae-page,
.bbae-page * {
  box-sizing: border-box;
}

.bbae-page {
  width: 100%;
  overflow: hidden;
  background: var(--bbae-white);
  color: var(--bbae-ink);
  font-family: "Poppins", Arial, sans-serif;
}

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

.bbae-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.bbae-hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 52px 0;
  overflow: hidden;
  background: linear-gradient(120deg, #05284d 0%, #006aa8 62%, #28a9dc 100%);
}

.bbae-hero::before,
.bbae-hero::after {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bbae-hero::before {
  top: -260px;
  left: -120px;
  background: rgba(255, 255, 255, 0.12);
}

.bbae-hero::after {
  right: -180px;
  bottom: -290px;
  background: rgba(0, 27, 56, 0.24);
}

.bbae-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 48px;
  align-items: center;
}

.bbae-hero__content {
  min-width: 0;
  color: var(--bbae-white);
}

.bbae-hero__media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 24, 50, 0.28);
}

.bbae-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bbae-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e6f7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bbae-heading {
  margin: 0;
}

.bbae-title {
  max-width: 780px;
  margin: 0;
  color: var(--bbae-white);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.bbae-subtitle {
  margin-top: 16px;
  color: #cceeff;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 1.6;
}

.bbae-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.bbae-fact {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(4, 35, 67, 0.25);
  backdrop-filter: blur(8px);
}

.bbae-fact__label {
  margin-bottom: 5px;
  color: #bceaff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.bbae-fact__value {
  color: var(--bbae-white);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.35;
}

.bbae-fact__note {
  margin-top: 2px;
  color: #d9f2ff;
  font-size: 12px;
}

.bbae-about {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid #56d3ff;
}

.bbae-about h2,
.bbae-about h3 {
  margin: 0 0 8px;
  color: var(--bbae-white);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.bbae-about p {
  margin: 0;
  color: #e7f5fd;
  font-size: 15px;
  line-height: 1.75;
}

.bbae-section {
  min-height: 0;
  margin: 0;
  padding: 72px 0;
  background: var(--bbae-white);
}

.bbae-section--soft {
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
}

.bbae-section__title {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  color: var(--bbae-ink);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.025em;
}

.bbae-section__title span {
  color: var(--bbae-blue);
}

.bbae-carousel {
  position: relative;
}

.bbae-carousel__viewport {
  width: 100%;
  min-height: 0;
  overflow: visible;
}

.bbae-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 66px) / 4);
  gap: 22px;
  margin: 0;
  padding: 8px 3px 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: #a9cce3 transparent;
}

.bbae-carousel__track::-webkit-scrollbar {
  height: 6px;
}

.bbae-carousel__track::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #a9cce3;
}

.bbae-carousel__item {
  min-width: 0;
  height: auto;
  scroll-snap-align: start;
}

.bbae-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 250px;
  height: 100%;
  margin: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--bbae-line);
  border-radius: 20px;
  background: var(--bbae-white);
  box-shadow: 0 12px 32px rgba(14, 51, 84, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bbae-card:hover {
  transform: translateY(-4px);
  border-color: #acd7ef;
  box-shadow: var(--bbae-shadow);
}

.bbae-card__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.bbae-card__icon {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #0078bd, #20a6d9);
  color: var(--bbae-white);
  box-shadow: 0 10px 22px rgba(0, 119, 190, 0.24);
  font-size: 24px;
}

.bbae-card__title {
  margin: 0;
  color: var(--bbae-ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.38;
}

.bbae-card__text {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--bbae-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bbae-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 14px;
}

.bbae-carousel__button {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--bbae-blue);
  box-shadow: 0 8px 18px rgba(0, 91, 148, 0.2);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.bbae-carousel__button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--bbae-blue-dark);
}

.bbae-carousel__button:focus-visible {
  outline: 3px solid rgba(0, 119, 190, 0.28);
  outline-offset: 3px;
}

.bbae-carousel__button:disabled {
  opacity: 0.32;
  cursor: default;
}

.bbae-carousel__button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.bbae-awards {
  padding: 68px 0;
  overflow: hidden;
  background: #f4f9fd;
}

.bbae-awards__title {
  margin: 0 0 32px;
  color: var(--bbae-ink);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.bbae-awards__slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.bbae-awards__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: bbae-awards-scroll 30s linear infinite;
}

.bbae-awards__slider:hover .bbae-awards__track,
.bbae-awards__slider:focus-within .bbae-awards__track {
  animation-play-state: paused;
}

.bbae-awards__logo {
  display: grid;
  flex: 0 0 240px;
  width: 240px;
  height: 140px;
  padding: 20px;
  place-items: center;
  border: 1px solid var(--bbae-line);
  border-radius: 18px;
  background: var(--bbae-white);
  box-shadow: 0 10px 28px rgba(14, 51, 84, 0.07);
}

.bbae-awards__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes bbae-awards-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

@media (max-width: 991.98px) {
  .bbae-hero {
    padding: 42px 0;
  }

  .bbae-hero__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bbae-hero__media {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .bbae-carousel__track {
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
  }
}

@media (max-width: 767.98px) {
  .bbae-shell,
  .bbae-section__title {
    width: min(100% - 30px, 1180px);
  }

  .bbae-hero {
    padding: 30px 0 38px;
  }

  .bbae-hero__media {
    min-height: 270px;
    border-radius: 20px;
  }

  .bbae-title {
    font-size: clamp(29px, 9vw, 42px);
  }

  .bbae-section {
    padding: 50px 0;
  }

  .bbae-section__title {
    margin-bottom: 24px;
  }

  .bbae-carousel__track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  .bbae-card {
    min-height: 230px;
    padding: 22px;
  }

  .bbae-awards {
    padding: 50px 0;
  }

  .bbae-awards__logo {
    flex-basis: 200px;
    width: 200px;
    height: 124px;
  }
}

@media (max-width: 575.98px) {
  .bbae-facts {
    grid-template-columns: 1fr;
  }

  .bbae-hero__media {
    min-height: 220px;
  }

  .bbae-carousel__track {
    grid-auto-columns: 88%;
  }

  .bbae-carousel__controls {
    justify-content: center;
  }
}

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

  .bbae-card,
  .bbae-carousel__button {
    transition: none;
  }

  .bbae-awards__track {
    animation: none;
  }
}

