/* ==========================================================================
   Beyond Journey — About Us page
   --------------------------------------------------------------------------
   Layout and section styles only: typography (fonts and sizes) is inherited
   from the site's own stylesheets. Colors reuse the site theme:
   orange #F5761A accent - dark navy #17233E - soft surface #F9F9F8.
   Behavior (scroll reveal + counters): js/about.js
   Breakpoints: desktop (default) - tablet <=1024px - mobile <=640px.
   ========================================================================== */

/* ------------------------------ Shared bits ----------------------------- */

.bj-section {
  padding: 90px 0;
}

.bj-section--soft {
  background: #f9f9f8;
}

.bj-section--navy {
  background: #17233e;
}

.bj-sec-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.bj-sec-head--left {
  margin: 0 0 26px;
  text-align: left;
}

.bj-label {
  display: block;
  margin: 0 0 8px;
  color: #f5761a;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bj-sec-head h2 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 16px;
}

/* Orange underline accent under section headings */
.bj-sec-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: #f5761a;
  transform: translateX(-50%);
}

.bj-sec-head--left h2::after {
  left: 0;
  transform: none;
}

.bj-sec-head p {
  margin: 0;
}

.bj-section--navy h2,
.bj-section--navy .bj-sec-head p {
  color: #fff;
}

/* Scroll reveal (activated only when JS adds .bj-js to <body>) */

body.bj-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

body.bj-js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------- Hero -------------------------------- */

.bj-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  /* No min-height: the banner is exactly content-tall. Top padding = the
     measured height of the absolutely-positioned site header (~145px:
     top strip + navbar with 40px logo); bottom = room for the curve. */
  padding: 145px 0 52px;
}

/* Soft curved transition into the next (white) section */
.bj-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.bj-hero__curve svg {
  display: block;
  width: 100%;
  height: 44px;
}

.bj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 35, 62, 0.85) 0%, rgba(23, 35, 62, 0.55) 55%, rgba(23, 35, 62, 0.75) 100%);
}

.bj-hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.bj-hero__crumbs {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.bj-hero__crumbs a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.bj-hero__crumbs a:hover {
  color: #f5761a;
}

.bj-hero__crumbs span {
  color: #fff;
}

/* Frosted badge above the headline */
.bj-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bj-hero__kicker i {
  color: #f5761a;
}

.bj-hero h1 {
  color: #fff;
  /* 34px, matching the Holiday, Tours and Hotels banners */
  font-size: 34px;
  margin: 0 0 10px;
  text-shadow: 0 2px 24px rgba(16, 26, 48, 0.45);
}

.bj-hero__intro {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 18px;
}

.bj-hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.bj-btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, transform 0.3s ease;
}

.bj-btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: #17233e;
  transform: translateY(-2px);
}

/* -------------------------------- Our Story ----------------------------- */

.bj-story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.bj-story__text p {
  margin-bottom: 14px;
}

.bj-checklist {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bj-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bj-checklist i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(245, 118, 26, 0.12);
  color: #f5761a;
  font-size: 10px;
}

.bj-story__media {
  position: relative;
}

.bj-story__media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 48px -28px rgba(23, 35, 62, 0.45);
}

.bj-story__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: #f5761a;
  color: #fff;
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: 0 14px 30px -14px rgba(245, 118, 26, 0.7);
}

.bj-story__badge strong {
  display: block;
  color: #fff;
}

/* ------------------------------- Who We Are ------------------------------ */

.bj-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bj-feature-card {
  background: #fff;
  border: 1px solid rgba(23, 35, 62, 0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 18px -12px rgba(23, 35, 62, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bj-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 118, 26, 0.35);
  box-shadow: 0 18px 36px -16px rgba(23, 35, 62, 0.3);
}

.bj-feature-card .bj-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 118, 26, 0.1);
  color: #f5761a;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.bj-feature-card:hover .bj-icon {
  background: #f5761a;
  color: #fff;
  transform: scale(1.06);
}

.bj-feature-card h4 {
  margin: 0 0 8px;
}

.bj-feature-card p {
  margin: 0;
}

/* ---------------------------- Mission and Vision ------------------------- */

.bj-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bj-mv-card {
  position: relative;
  border-radius: 20px;
  padding: 42px 38px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bj-mv-card:hover {
  transform: translateY(-5px);
}

.bj-mv-card .bj-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 18px;
}

.bj-mv-card--mission {
  background: linear-gradient(135deg, #1c2a4a 0%, #17233e 100%);
}

.bj-mv-card--mission::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245, 118, 26, 0.12);
}

.bj-mv-card--mission h3,
.bj-mv-card--mission p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.bj-mv-card--mission p {
  opacity: 0.85;
}

.bj-mv-card--mission .bj-icon {
  background: rgba(245, 118, 26, 0.18);
  color: #f5761a;
}

.bj-mv-card--vision {
  background: #fff;
  border: 1px solid rgba(23, 35, 62, 0.08);
  box-shadow: 0 6px 18px -12px rgba(23, 35, 62, 0.2);
}

.bj-mv-card--vision:hover {
  box-shadow: 0 16px 32px -14px rgba(23, 35, 62, 0.3);
}

.bj-mv-card--vision .bj-icon {
  background: rgba(245, 118, 26, 0.1);
  color: #f5761a;
}

.bj-mv-card h3 {
  margin: 0 0 10px;
}

.bj-mv-card p {
  margin: 0;
}

/* ------------------------------ Why Choose Us ---------------------------- */

.bj-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bj-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(23, 35, 62, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bj-why-item:hover {
  border-color: rgba(245, 118, 26, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -16px rgba(23, 35, 62, 0.25);
}

.bj-why-item .bj-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(245, 118, 26, 0.1);
  color: #f5761a;
  font-size: 19px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bj-why-item:hover .bj-icon {
  background: #f5761a;
  color: #fff;
}

.bj-why-item h5 {
  margin: 0 0 6px;
}

.bj-why-item p {
  margin: 0;
}

/* ---------------------------- Leadership (4 x 2) ------------------------- */

.bj-leadership {
  background: #f9f9f8;
  padding: 90px 0;
  scroll-margin-top: 110px;
}

.bj-leadership__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.bj-leadership__header {
  /* The template's style.css absolutely positions every bare <header>
     element — restore normal flow for this section's header. */
  position: static;
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.bj-leadership__label {
  margin: 0 0 8px;
  color: #f5761a;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bj-leadership__title {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 16px;
}

.bj-leadership__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: #f5761a;
  transform: translateX(-50%);
}

.bj-leadership__intro {
  max-width: 640px;
  margin: 0 auto;
}

.bj-leadership__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bj-leadership__item {
  list-style: none;
}

.bj-leader-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(23, 35, 62, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px -12px rgba(23, 35, 62, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bj-leader-card:hover,
.bj-leader-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -14px rgba(23, 35, 62, 0.3);
}

.bj-leader-card__media {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #17233e;
}

.bj-leader-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.bj-leader-card:hover .bj-leader-card__media img {
  transform: scale(1.05);
}

.bj-leader-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 20px 16px 22px;
  text-align: center;
}

.bj-leader-card__name {
  margin: 0 0 4px;
}

.bj-leader-card__role {
  margin: 0 0 16px;
  color: #56607a;
}

.bj-leader-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: auto;
  border-radius: 50%;
  border: 1px solid rgba(23, 35, 62, 0.2);
  color: #17233e;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.bj-leader-card__linkedin:hover {
  background: #f5761a;
  border-color: #f5761a;
  color: #fff;
}

.bj-leader-card__linkedin:focus-visible {
  outline: 2px solid #f5761a;
  outline-offset: 3px;
}

.bj-leader-card__linkedin svg {
  width: 16px;
  height: 16px;
}

/* --------------------------- Journey in Numbers -------------------------- */

.bj-section--navy {
  background-color: #17233e;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.bj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

/* Thin separators between stats on desktop */
.bj-stat {
  padding: 6px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.bj-stat:first-child {
  border-left: 0;
}

.bj-stat__num {
  display: block;
  color: #f5761a;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.bj-stat__label {
  color: rgba(255, 255, 255, 0.85);
}

/* ----------------------------- Customer Promise -------------------------- */

.bj-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bj-promise-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(23, 35, 62, 0.08);
  border-radius: 20px;
  padding: 36px 30px 32px;
  box-shadow: 0 6px 18px -12px rgba(23, 35, 62, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Orange top accent that slides in on hover */
.bj-promise-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #f5761a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.bj-promise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -14px rgba(23, 35, 62, 0.3);
}

.bj-promise-card:hover::before {
  transform: scaleX(1);
}

.bj-promise-card .bj-num {
  display: block;
  color: rgba(245, 118, 26, 0.35);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}

.bj-promise-card h4 {
  margin: 0 0 8px;
}

.bj-promise-card p {
  margin: 0;
}

/* ------------------------------- Testimonials ---------------------------- */

.bj-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bj-quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(23, 35, 62, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 18px -12px rgba(23, 35, 62, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Large decorative quote mark */
.bj-quote-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 84px;
  line-height: 1;
  color: rgba(245, 118, 26, 0.14);
  font-family: Georgia, serif;
  pointer-events: none;
}

.bj-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -14px rgba(23, 35, 62, 0.3);
}

.bj-quote-card:hover {
  border-color: rgba(245, 118, 26, 0.4);
}

.bj-quote-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.bj-quote-card__avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(245, 118, 26, 0.55);
}

.bj-quote-card__who strong {
  display: block;
  color: #17233e;
}

.bj-quote-card__who span {
  color: #56607a;
}

.bj-quote-card__who span i {
  color: #f5761a;
  margin-right: 4px;
}

.bj-quote-card .bj-stars {
  color: #f5761a;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 2px;
}

.bj-quote-card blockquote {
  margin: 0 0 18px;
  border: 0;
  padding: 0;
}

.bj-quote-card__verified {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto 0 0; /* pins to the card bottom so all cards align */
  padding-top: 14px;
  border-top: 1px solid rgba(23, 35, 62, 0.08);
  color: #1e8e5a;
  font-weight: 600;
}

/* --------------------------------- Partners ------------------------------ */

.bj-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.bj-partners img {
  max-height: 56px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.bj-partners img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-3px);
}

/* --------------------------------- Final CTA ----------------------------- */

.bj-cta {
  position: relative;
  background: linear-gradient(120deg, #17233e 0%, #22315a 60%, #17233e 100%);
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.bj-cta::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(245, 118, 26, 0.14);
}

.bj-cta::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 118, 26, 0.1);
}

.bj-cta .container {
  position: relative;
  z-index: 1;
}

.bj-cta h2 {
  color: #fff;
  margin: 0 0 12px;
}

.bj-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 28px;
}

.bj-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.bj-cta__phone {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.75);
}

.bj-cta__phone a {
  color: #f5761a;
  font-weight: 700;
  transition: color 0.3s ease;
}

.bj-cta__phone a:hover {
  color: #fff;
}

/* ================================ RESPONSIVE ============================= */

/* ------------------------------ Tablet <=1024 ---------------------------- */

@media (max-width: 1024px) {
  .bj-section,
  .bj-leadership,
  .bj-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .bj-hero {
    padding: 130px 0 46px;
  }

  .bj-hero__curve svg {
    height: 36px;
  }

  .bj-sec-head {
    margin-bottom: 38px;
  }

  .bj-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bj-story__media {
    max-width: 640px;
    margin: 0 auto;
  }

  .bj-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .bj-why {
    grid-template-columns: repeat(2, 1fr);
  }

  .bj-leadership__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bj-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  /* With two columns, keep a separator only on the right-hand column */
  .bj-stat {
    border-left: 0;
  }

  .bj-stat:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* 3 promise cards read better as a centered single column on tablets */
  .bj-promise {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  /* Testimonials: 2 per row on tablet, third card spans the full row */
  .bj-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .bj-quote-card:last-child {
    grid-column: 1 / -1;
  }

  .bj-partners {
    gap: 40px;
  }

  .bj-partners img {
    max-height: 48px;
  }
}

/* ------------------------------ Mobile <=640 ----------------------------- */

@media (max-width: 640px) {
  .bj-section,
  .bj-leadership,
  .bj-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .bj-hero {
    /* On small screens the template hides the top strip, so the header is
       only the navbar — much less clearance needed. */
    padding: 100px 0 40px;
  }

  .bj-hero__curve svg {
    height: 28px;
  }

  /* Testimonials: single column on mobile */
  .bj-testimonials {
    grid-template-columns: 1fr;
  }

  .bj-quote-card:last-child {
    grid-column: auto;
  }

  .bj-sec-head {
    margin-bottom: 32px;
  }

  .bj-leadership__container {
    padding: 0 20px;
  }

  .bj-features,
  .bj-why,
  .bj-mv {
    grid-template-columns: 1fr;
  }

  /* The leadership grid stays 2-up. One portrait per row made this section
     4,146px on a 390px screen - five phone screens of scrolling for eight
     people. Side by side it halves, and a face plus a name and a role is
     perfectly legible at 172px. */
  .bj-leadership__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bj-leader-card__name { font-size: 14px; }
  .bj-leader-card__role { font-size: 11.5px; }

  /* Stats stay 2-up on phones — numbers read better side by side */
  .bj-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .bj-stat__num {
    font-size: 30px;
  }

  .bj-story__badge {
    left: 14px;
    bottom: 14px;
    padding: 10px 16px;
  }

  .bj-partners {
    gap: 24px 32px;
  }

  .bj-partners img {
    max-height: 40px;
  }
}

/* Small phones: full-width CTA buttons for easy tapping */

@media (max-width: 480px) {
  .bj-hero__cta,
  .bj-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .bj-hero__cta .nir-btn,
  .bj-hero__cta .bj-btn-outline,
  .bj-cta__buttons .nir-btn,
  .bj-cta__buttons .bj-btn-outline {
    text-align: center;
  }

  .bj-stats {
    grid-template-columns: 1fr;
  }

  .bj-stat,
  .bj-stat:nth-child(even) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
  }

  .bj-stat:first-child {
    border-top: 0;
    padding-top: 0;
  }
}

/* ------------------------------ Reduced motion --------------------------- */

@media (prefers-reduced-motion: reduce) {
  body.bj-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bj-feature-card,
  .bj-feature-card .bj-icon,
  .bj-mv-card,
  .bj-why-item,
  .bj-why-item .bj-icon,
  .bj-leader-card,
  .bj-leader-card__media img,
  .bj-promise-card,
  .bj-promise-card::before,
  .bj-quote-card,
  .bj-partners img,
  .bj-leader-card__linkedin,
  .bj-btn-outline {
    transition: none;
  }

  .bj-feature-card:hover,
  .bj-mv-card:hover,
  .bj-why-item:hover,
  .bj-leader-card:hover,
  .bj-promise-card:hover,
  .bj-quote-card:hover {
    transform: none;
  }

  .bj-leader-card:hover .bj-leader-card__media img {
    transform: none;
  }
}
