/* =====================================================
   MFNXT HUMAN SUPPORT
===================================================== */
.mfnxt-support {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 8vw, 110px) 0;
    background:
      radial-gradient(
        circle at 15% 20%,
        rgba(0, 119, 255, 0.18),
        transparent 35%
      ),
      radial-gradient(circle at 90% 80%, rgba(0, 45, 100, 0.55), transparent 40%),
      linear-gradient(135deg, #00498f 0%, #003d7a 48%, #071f4a 100%);
    color: #fff;
  }
  
  /* =====================================================
     DECORATIVE GLOW
  ===================================================== */
  .mfnxt-support::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -260px;
    top: -220px;
    border-radius: 50%;
    background: rgba(0, 119, 255, 0.14);
    filter: blur(30px);
    pointer-events: none;
  }
  
  .mfnxt-support::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.08);
    filter: blur(30px);
    pointer-events: none;
  }
  
  /* =====================================================
     GRID
  ===================================================== */
  .mfnxt-support-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1fr);
    align-items: center;
    gap: clamp(50px, 7vw, 90px);
  }
  
  /* =====================================================
     LEFT CONTENT
  ===================================================== */
  .mfnxt-support-content {
    max-width: 650px;
  }
  
  .mfnxt-support-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--third-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
  
  .mfnxt-support-title {
    margin-bottom: 30px;
    color: var(--c-white);
    font-family: var(--third-font);
    font-size: clamp(32px, 5vw, 38px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -2.5px;
  }
  
  .mfnxt-support-title span {
    font-size: clamp(32px, 5vw, 38px);
    color: var(--c-gold);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
  }
  
  .mfnxt-support-description {
    max-width: 610px;
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: clamp(16px, 1.7vw, 17px);
    line-height: 1.75;
  }
  
  /* =====================================================
     LANGUAGES
  ===================================================== */
  .mfnxt-support-languages {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin-top: 20px;
  }
  
  .support-language {
    min-height: 106px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    transition:
      transform 0.3s var(--ease),
      background 0.3s var(--ease),
      border-color 0.3s var(--ease);
  }
  
  .support-language:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
  }
  
  .support-language strong {
    margin-bottom: 8px;
    color: #fff;
    font-family: var(--third-font);
    font-size: 20px;
    font-weight: 400;
  }
  
  .support-language span {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
  }
  
  .support-language.active {
    border-color: var(--c-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.18);
  }
  
  .support-language.active strong {
    color: #fff;
  }
  
  /* =====================================================
     RIGHT PANEL
  ===================================================== */
  .mfnxt-support-panel {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  }
  
  /* =====================================================
     PANEL HEADER
  ===================================================== */
  .support-panel-header {
    padding: 4px 12px 20px;
  }
  
  .support-panel-header h3 {
    margin: 0;
    color: #fff;
    font-family: var(--third-font);
    font-size: clamp(25px, 2.5vw, 28px);
    font-weight: 500;
    line-height: 1.2;
  }
  
  /* =====================================================
     SUPPORT ITEM
  ===================================================== */
  .support-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
    transition:
      transform 0.3s var(--ease),
      background 0.3s var(--ease),
      border-color 0.3s var(--ease);
  }
  
  .support-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
  }
  
  /* =====================================================
     ICON
  ===================================================== */
  .support-item-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-size: 25px;
  }
  
  .support-item-icon.blue {
    background: linear-gradient(135deg, #1684d8, #0870c8);
  }
  
  .support-item-icon.green {
    background: linear-gradient(135deg, #22c77a, #0baa6b);
  }
  
  .support-item-icon.gold {
    background: linear-gradient(135deg, #e8ba2c, #d49a00);
  }
  
  .support-item-icon.navy {
    background: linear-gradient(135deg, #164d83, #12365e);
  }
  
  /* =====================================================
     ITEM CONTENT
  ===================================================== */
  .support-item-content {
    min-width: 0;
  }
  
  .support-item-content h4 {
    margin: 0 0 7px;
    color: #fff;
    font-family: var(--third-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 1.3;
  }
  
  .support-item-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* =====================================================
     LARGE TABLET
  ===================================================== */
  @media (max-width: 1199px) {
    .mfnxt-support-grid {
      grid-template-columns: 1fr;
      gap: 55px;
    }
  
    .mfnxt-support-content {
      max-width: 850px;
    }
  
    .mfnxt-support-description {
      max-width: 750px;
    }
  
    .mfnxt-support-languages {
      max-width: 650px;
    }
  }
  
  /* =====================================================
     TABLET
  ===================================================== */
  @media (max-width: 767px) {
    .mfnxt-support {
      padding: 70px 0 80px;
    }
  
    .mfnxt-support-title {
      font-size: clamp(38px, 9vw, 52px);
      letter-spacing: -1.5px;
    }
  
    .mfnxt-support-description {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 32px;
    }
  
    .mfnxt-support-languages {
      grid-template-columns: repeat(2, 1fr);
      max-width: 500px;
    }
  
    .support-language {
      min-height: 105px;
    }
  
    .mfnxt-support-panel {
      padding: 18px;
      border-radius: 22px;
    }
  
    .support-panel-header {
      padding: 4px 8px 16px;
    }
  
    .support-item {
      padding: 16px;
      gap: 16px;
      border-radius: 17px;
    }
  
    .support-item-icon {
      width: 52px;
      height: 52px;
      flex-basis: 52px;
      border-radius: 15px;
      font-size: 21px;
    }
  }
  
  /* =====================================================
     MOBILE
  ===================================================== */
  @media (max-width: 576px) {
    .mfnxt-support {
      padding: 60px 0 65px;
    }
  
    .mfnxt-support-content {
      text-align: center;
    }
  
    .mfnxt-support-badge {
      margin-bottom: 22px;
      font-size: 10px;
      letter-spacing: 1.2px;
    }
  
    .mfnxt-support-title {
      margin-bottom: 22px;
      font-size: clamp(35px, 10vw, 46px);
      line-height: 1.1;
    }
  
    .mfnxt-support-description {
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
    }
  
    .mfnxt-support-languages {
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin: 0 auto;
    }
  
    .support-language {
      min-height: 95px;
      border-radius: 16px;
    }
  
    .support-language strong {
      font-size: 20px;
    }
  
    .support-language span {
      font-size: 11px;
    }
  
    .mfnxt-support-panel {
      padding: 14px;
      border-radius: 20px;
    }
  
    .support-panel-header h3 {
      font-size: 25px;
    }
  
    .support-item {
      align-items: flex-start;
      gap: 13px;
      padding: 14px;
      margin-top: 10px;
    }
  
    .support-item-icon {
      width: 46px;
      height: 46px;
      flex-basis: 46px;
      border-radius: 13px;
      font-size: 19px;
    }
  
    .support-item-content h4 {
      font-size: 15px;
      margin-bottom: 5px;
    }
  
    .support-item-content p {
      font-size: 12px;
      line-height: 1.5;
    }
  }
  
  /* =====================================================
     VERY SMALL DEVICES
  ===================================================== */
  @media (max-width: 380px) {
    .mfnxt-support-languages {
      gap: 8px;
    }
  
    .support-language {
      min-height: 88px;
      padding: 12px 6px;
    }
  
    .support-language strong {
      font-size: 18px;
    }
  
    .support-item {
      padding: 12px;
    }
  
    .support-item-icon {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
      font-size: 17px;
    }
  
    .support-item-content h4 {
      font-size: 14px;
    }
  
    .support-item-content p {
      font-size: 11px;
    }
  }
  