
  .mjet-about {
    position: relative;
    color: #fff;
    font-family: inherit;
    overflow: hidden;
  }

  .mjet-about__bg {
    position: absolute;
    inset: 0;
  }

  .mjet-about__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mjet-about__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 40%, rgba(0,0,0,.12) 100%),
      linear-gradient(to top, rgba(0,0,0,.32) 0%, rgba(0,0,0,0) 50%);
  }

  .mjet-about__inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 88px 24px 96px;
  }

  .mjet-eyebrow {
    margin: 0 0 14px;
    color: #ff7a1a;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
  }

  .mjet-about h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.06;
    text-transform: uppercase;
    max-width: 640px;
  }

  .mjet-about__sub {
    margin: 0 0 48px;
    max-width: 560px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.72;
  }

  .mjet-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    overflow: hidden;
    max-width: 860px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
  }

  .mjet-pillar {
    background: rgba(0,0,0,.42);
    padding: 24px 22px;
  }

  .mjet-pillar__num {
    display: block;
    margin-bottom: 12px;
    color: #ff8a2a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
  }

  .mjet-pillar strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .mjet-pillar p {
    margin: 0;
    color: rgba(255,255,255,.54);
    font-size: 13px;
    line-height: 1.6;
  }

  .mjet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 4px;
    background: #ff7a1a;
    color: #050505;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
  }

  .mjet-btn:hover { background: #ff943d; transform: translateY(-1px); }

  @media (max-width: 768px) {
    .mjet-about__inner { padding: 60px 16px 68px; }
    .mjet-about h2 { font-size: 32px; }
    .mjet-about__sub { font-size: 15px; margin-bottom: 36px; }
    .mjet-pillars { grid-template-columns: 1fr; max-width: 100%; }
    .mjet-btn { width: 100%; }
  }
