/* ===================================================== MFNXT — START SMALL CTA ===================================================== */
.mfnxt-start-small {
    position: relative;
    padding: clamp(70px, 8vw, 110px) 0;
    overflow: hidden;
    background: var(--c-white);
  }
  
  /* ===================================================== MAIN CARD ===================================================== */
  .mfnxt-start-card {
    position: relative;
    overflow: hidden;
    max-width: 1250px;
    margin: 0 auto;
    padding: clamp(55px, 7vw, 85px) clamp(24px, 6vw, 80px);
    text-align: center;
    border: 1px solid var(--c-line);
    border-radius: 32px;
    background:
      radial-gradient(circle at 8% 5%, rgba(227, 6, 19, 0.09), transparent 28%),
      radial-gradient(circle at 95% 95%, rgba(0, 92, 200, 0.1), transparent 32%),
      #fff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
  }
  
  /* ===================================================== TOP ACCENT ===================================================== */
  .start-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
      90deg,
      var(--secondary-color) 0%,
      var(--secondary-color) 42%,
      var(--primary-color) 72%,
      var(--primary-color) 100%
    );
  }
  
  /* ===================================================== CONTENT ===================================================== */
  .start-small-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* ===================================================== BADGE ===================================================== */
  .start-small-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    margin-bottom: 25px;
    border: 1px solid rgba(227, 6, 19, 0.1);
    border-radius: var(--radius-pill);
    background: var(--secondary-color-soft);
    color: var(--secondary-color);
    font-family: var(--third-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
  }
  
  .start-small-badge i {
    font-size: 15px;
  }
  
  /* ===================================================== TITLE ===================================================== */
  .start-small-title {
    margin: 0 0 22px;
    font-family: var(--third-font);
    font-size: clamp(40px, 5vw, 50px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--c-ink);
  }
  
  .start-small-title .red {
    color: var(--secondary-color);
  }
  
  .start-small-title .blue {
    color: var(--primary-color);
  }
  
  /* ===================================================== DESCRIPTION ===================================================== */
  .start-small-description {
    margin: 0 0 18px;
    color: var(--c-slate);
    font-family: var(--third-font);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65;
  }
  
  /* ===================================================== ACTIONS ===================================================== */
  .start-small-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
  }
  
  .start-small-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 27px;
    border-radius: var(--radius-pill);
    font-family: var(--third-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease);
  }
  
  /* ===================================================== PRIMARY BUTTON ===================================================== */
  .start-small-btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #f01a25 0%, var(--secondary-color) 100%);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.22);
  }
  
  .start-small-btn-primary span {
    color: #fff;
  }
  
  .start-small-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(227, 6, 19, 0.3);
  }
  
  .start-small-btn-primary i {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s var(--ease);
  }
  
  .start-small-btn-primary:hover i {
    transform: translate(3px, -3px);
  }
  
  /* ===================================================== SECONDARY BUTTON ===================================================== */
  .start-small-btn-secondary {
    color: var(--primary-color);
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
  }
  
  .start-small-btn-secondary:hover {
    color: var(--primary-color);
    background: var(--primary-color-soft);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .start-small-btn-secondary i {
    font-size: 18px;
  }
  
  /* ===================================================== TRUST POINTS ===================================================== */
  .start-small-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .start-small-point {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 14px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.75);
    color: var(--c-slate);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
  }
  
  .start-small-point i {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color-soft);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
  }
  
  /* ===================================================== TABLET ===================================================== */
  @media (max-width: 767px) {
    .mfnxt-start-small {
      padding: 65px 0 75px;
    }
  
    .mfnxt-start-card {
      border-radius: 25px;
      padding: 55px 24px 45px;
    }
  
    .start-small-title {
      font-size: clamp(38px, 9vw, 52px);
      letter-spacing: -1.3px;
    }
  
    .start-small-description {
      font-size: 15px;
      line-height: 1.65;
    }
  
    .start-small-actions {
      gap: 10px;
    }
  
    .start-small-btn {
      min-height: 54px;
      padding: 0 22px;
      font-size: 14px;
    }
  }
  
  /* ===================================================== MOBILE ===================================================== */
  @media (max-width: 576px) {
    .mfnxt-start-small {
      padding: 55px 0 65px;
    }
  
    .mfnxt-start-card {
      padding: 48px 18px 38px;
      border-radius: 22px;
    }
  
    .start-small-badge {
      max-width: 100%;
      padding: 8px 13px;
      font-size: 9px;
      letter-spacing: 1px;
    }
  
    .start-small-title {
      margin-bottom: 20px;
      font-size: clamp(34px, 10vw, 45px);
      line-height: 1.1;
      letter-spacing: -1px;
    }
  
    .start-small-description {
      margin-bottom: 28px;
      font-size: 14px;
      line-height: 1.65;
    }
  
    .start-small-actions {
      flex-direction: column;
      width: 100%;
      margin-bottom: 28px;
    }
  
    .start-small-btn {
      width: 100%;
      min-height: 53px;
    }
  
    .start-small-points {
      gap: 7px;
    }
  
    .start-small-point {
      min-height: 34px;
      padding: 6px 10px;
      font-size: 10px;
    }
  }
  
  /* ===================================================== VERY SMALL MOBILE ===================================================== */
  @media (max-width: 380px) {
    .mfnxt-start-card {
      padding: 42px 15px 32px;
    }
  
    .start-small-title {
      font-size: 32px;
    }
  
    .start-small-description {
      font-size: 13px;
    }
  
    .start-small-point {
      font-size: 9px;
      padding: 5px 8px;
    }
  }
  